:root {
  --bg: #050505;
  --bg-soft: #090909;
  --panel: #0d0d0d;
  --panel-2: #121212;
  --text: #f7f6f1;
  --muted: #a3a39d;
  --dim: #74746f;
  --gold: #f6b70b;
  --gold-light: #ffd762;
  --line: rgba(255, 255, 255, .13);
  --line-strong: rgba(255, 255, 255, .24);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1320px;
  --header-h: 82px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 22px); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, blockquote, figure { margin: 0; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: #050505; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.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;
}

.page-noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.pointer-glow {
  position: fixed;
  z-index: -1;
  top: 20%;
  left: 50%;
  width: min(680px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(246, 183, 11, .09), transparent 68%);
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.section-shell {
  width: min(var(--shell), calc(100% - 56px));
  margin-inline: auto;
}
.section-index {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}
.section-index span { color: var(--gold); }
.display-title {
  max-width: 980px;
  font-size: clamp(46px, 6.2vw, 92px);
  font-weight: 760;
  letter-spacing: -.062em;
  line-height: .92;
  text-wrap: balance;
}
.display-title em {
  color: var(--gold);
  font-style: normal;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(5, 5, 5, .9), rgba(5, 5, 5, 0));
  transition: height .35s var(--ease), background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(5, 5, 5, .84);
  backdrop-filter: blur(18px) saturate(1.15);
}
.header-inner {
  width: min(var(--shell), calc(100% - 56px));
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
}
.brand picture { flex: 0 0 auto; }
.brand img {
  width: 46px;
  height: auto;
}
.brand > span { display: grid; gap: 2px; }
.brand strong {
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .21em;
}
.brand small {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: .29em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.desktop-nav a {
  position: relative;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: #c9c9c4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transition: right .28s var(--ease);
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.header-cta span { color: var(--gold); }
.header-cta:hover { transform: translateY(-2px); border-color: rgba(246, 183, 11, .45); background: rgba(246, 183, 11, .06); }
.menu-button { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 94px);
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 72px;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 9%;
  right: 18%;
  width: 54vw;
  max-width: 820px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 183, 11, .08), transparent 65%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b6b6b0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .23em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: var(--gold); }
.hero h1 {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(60px, 7.4vw, 116px);
  font-weight: 790;
  letter-spacing: -.07em;
  line-height: .83;
  text-wrap: balance;
}
.hero h1 span, .hero h1 em { display: block; }
.hero h1 span:nth-child(2) { color: #c8c8c3; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-intro {
  max-width: 650px;
  margin-top: 31px;
  color: #b7b7b1;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.button-gold { border-color: var(--gold); background: var(--gold); color: #070707; }
.button-gold:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 14px 42px rgba(246, 183, 11, .2);
}
.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line-strong);
  color: #d8d8d4;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease, border-color .25s ease;
}
.text-link span { color: var(--gold); }
.text-link:hover { color: #fff; border-color: var(--gold); }
.hero-meta {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 55px;
  color: var(--dim);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .14em;
  line-height: 1.7;
  text-transform: uppercase;
}
.hero-meta > span { color: var(--gold); }
.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-frame {
  position: relative;
  z-index: 2;
  width: min(480px, 86%);
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  background: #080808;
  box-shadow: 0 55px 120px rgba(0, 0, 0, .58);
  transform: rotate(2.2deg);
  transform-style: preserve-3d;
  transition: transform .25s var(--ease);
  will-change: transform;
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05);
}
.hero-frame picture, .hero-frame img { width: 100%; height: 100%; }
.hero-frame img { object-fit: cover; filter: none; }
.hero-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 17px;
  bottom: 17px;
  left: 17px;
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(5, 5, 5, .67);
  backdrop-filter: blur(13px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-frame figcaption b { color: var(--gold); font-weight: 700; }
.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(246, 183, 11, .16);
  border-radius: 50%;
}
.orbit-one { width: 640px; aspect-ratio: 1; }
.orbit-two { width: 470px; aspect-ratio: 1; border-color: rgba(255, 255, 255, .09); }
.float-label {
  position: absolute;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 7, .78);
  backdrop-filter: blur(12px);
  color: #bbb;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .18em;
}
.label-one { top: 20%; left: -2%; }
.label-two { right: -3%; bottom: 18%; color: var(--gold); }
.scroll-cue {
  position: absolute;
  bottom: 31px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5f5f5c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue span { width: 24px; height: 1px; background: var(--gold); }

.discipline-rail {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #070707;
}
.discipline-rail > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  color: #b4b4ae;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  animation: rail 34s linear infinite;
}
.discipline-rail b { color: var(--gold); font-size: 9px; }
@keyframes rail { to { transform: translateX(-50%); } }

.manifesto { padding-block: 154px 146px; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(48px, 8vw, 120px);
  margin-top: 48px;
}
.manifesto-copy { padding-top: 10px; }
.manifesto-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.manifesto-copy .lead {
  margin-bottom: 24px;
  color: var(--text);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.manifesto-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 51px;
}
.manifesto-points div { padding-top: 17px; border-top: 1px solid var(--line); }
.manifesto-points strong { display: block; color: var(--gold); font-size: 34px; font-weight: 520; }
.manifesto-points span { display: block; margin-top: 6px; color: var(--dim); font-size: 8px; font-weight: 700; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }

.services { padding-block: 120px 160px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 54px;
  margin-bottom: 54px;
}
.section-header .section-index { margin-bottom: 22px; }
.section-header > p {
  max-width: 390px;
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}
.service-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-tabs::-webkit-scrollbar { display: none; }
.service-tabs button {
  flex: 1 0 auto;
  min-width: 115px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #a2a29d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.service-tabs button:hover { color: #fff; border-color: var(--line-strong); transform: translateY(-2px); }
.service-tabs button[aria-selected="true"] { border-color: var(--gold); background: var(--gold); color: #060606; }
.service-panels {
  min-height: 735px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 14%, rgba(246, 183, 11, .11), transparent 28%),
    linear-gradient(145deg, #101010, #070707 68%);
}
.service-panel {
  min-height: 735px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: clamp(45px, 7vw, 105px);
  padding: clamp(36px, 5vw, 74px);
  animation: panel-in .58s var(--ease) both;
}
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }
.service-number { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .2em; }
.service-copy h3 {
  margin-top: 23px;
  font-size: clamp(52px, 7vw, 105px);
  font-weight: 780;
  letter-spacing: -.065em;
  line-height: .86;
  overflow-wrap: anywhere;
}
.service-copy p {
  max-width: 570px;
  margin-top: 27px;
  color: #b8b8b2;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.6;
}
.service-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.service-copy li {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #9b9b95;
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-media {
  position: relative;
  justify-self: end;
  width: min(100%, 450px);
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: #050505;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .52);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}
.service-media picture, .service-media img { width: 100%; height: 100%; }
.service-media img { object-fit: cover; filter: none; transition: transform .8s var(--ease); }
.service-media:hover img { transform: scale(1.018); }
.service-panel-ai { grid-template-columns: minmax(0, 1fr) minmax(400px, 540px); }
.ai-canvas {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  border: 1px solid rgba(246, 183, 11, .2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 183, 11, .13), rgba(255, 255, 255, .02) 40%, transparent 68%);
}
.ai-canvas svg { position: absolute; inset: 4%; width: 92%; fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 1; animation: rotate-slow 40s linear infinite; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }
.ai-core {
  width: 150px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: #080808;
  text-align: center;
  box-shadow: 0 0 70px rgba(246, 183, 11, .17);
}
.ai-core span { color: var(--gold); font-size: 44px; font-weight: 800; letter-spacing: -.07em; }
.ai-core small { color: #898983; font-size: 7px; letter-spacing: .13em; }
.node { position: absolute; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: #0a0a0a; color: #aaa; font-size: 7px; font-weight: 750; letter-spacing: .16em; }
.node-one { top: 8%; left: 50%; transform: translateX(-50%); }
.node-two { top: 50%; right: 3%; transform: translateY(-50%); }
.node-three { bottom: 8%; left: 50%; transform: translateX(-50%); }
.node-four { top: 50%; left: 3%; transform: translateY(-50%); }

.work { padding-block: 115px 170px; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}
.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #080808;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}
.work-card-one { grid-column: 1 / span 5; }
.work-card-two { grid-column: 7 / span 4; margin-top: 135px; }
.work-card-three { grid-column: 2 / span 4; margin-top: -28px; }
.work-card-four { grid-column: 7 / span 5; margin-top: 76px; }
.work-card picture, .work-card img { width: 100%; height: auto; }
.work-card img { filter: none; transition: transform .9s var(--ease); }
.work-card:hover img { transform: scale(1.015); }
.work-card figcaption {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  left: 15px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(4, 4, 4, .7);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.work-card figcaption b { color: var(--gold); font-weight: 700; }

.systems { padding-block: 55px 160px; }
.systems-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding: clamp(38px, 5.5vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(246, 183, 11, .26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 14%, rgba(246, 183, 11, .12), transparent 28%),
    linear-gradient(145deg, #101010, #070707);
}
.systems-copy .section-index { margin-bottom: 23px; }
.systems-copy .display-title { font-size: clamp(43px, 5.2vw, 78px); }
.systems-copy > p { max-width: 590px; margin: 30px 0 34px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.system-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .55);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.window-top { height: 47px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--line); }
.window-top i { width: 8px; height: 8px; border: 1px solid #4f4f4c; border-radius: 50%; }
.window-top span { margin-left: 7px; color: #676764; font-size: 8px; letter-spacing: .14em; }
.system-body { position: relative; min-height: 390px; padding: 48px; }
.system-mark { color: var(--gold); font-size: 70px; font-weight: 820; letter-spacing: -.09em; }
.system-lines { display: grid; gap: 13px; margin-top: 54px; }
.system-lines span { width: 78%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, rgba(246, 183, 11, .86), rgba(255, 255, 255, .08)); }
.system-lines span:nth-child(2) { width: 55%; }
.system-lines span:nth-child(3) { width: 88%; }
.system-lines span:nth-child(4) { width: 42%; }
.system-metric { position: absolute; right: 25px; padding: 13px; border: 1px solid var(--line); border-radius: 13px; background: #0a0a0a; }
.system-metric:nth-of-type(1) { top: 40px; }
.system-metric:nth-of-type(2) { bottom: 28px; }
.system-metric b { display: block; color: var(--gold); font-size: 25px; font-weight: 600; }
.system-metric small { display: block; margin-top: 4px; color: #70706d; font-size: 7px; letter-spacing: .12em; }

.statement { padding-block: 115px 165px; text-align: center; }
.statement > p { margin-bottom: 24px; color: var(--dim); font-size: 9px; font-weight: 750; letter-spacing: .24em; }
.statement blockquote { font-size: clamp(50px, 8vw, 118px); font-weight: 790; letter-spacing: -.07em; line-height: .86; }
.statement em { color: var(--gold); font-style: normal; }

.contact { padding-block: 130px 155px; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr); gap: clamp(55px, 8vw, 120px); }
.contact-copy .section-index { margin-bottom: 24px; }
.contact-copy .display-title { font-size: clamp(48px, 6vw, 86px); }
.contact-copy > p { max-width: 570px; margin-top: 31px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.brief-form { display: grid; gap: 21px; }
.field { display: grid; gap: 8px; }
.field label { color: #858580; font-size: 9px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-size: 16px;
  transition: border-color .2s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field select { color-scheme: dark; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: #5e5e5a; }
.button-full { width: 100%; }
.form-note { color: #656561; font-size: 9px; letter-spacing: .08em; text-align: center; }
.form-status { min-height: 17px; color: var(--gold); font-size: 10px; text-align: center; }

.site-footer { border-top: 1px solid var(--line); }
.footer-inner { width: min(var(--shell), calc(100% - 56px)); margin-inline: auto; padding-block: 65px 28px; }
.footer-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.footer-brand { width: 220px; }
.footer-brand img { width: 100%; height: auto; }
.footer-top > p { font-size: clamp(26px, 3.5vw, 48px); font-weight: 760; letter-spacing: -.04em; line-height: .98; text-align: right; }
.footer-top em { color: var(--gold); font-style: normal; }
.footer-services { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px 30px; margin-top: 50px; padding-block: 23px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #7c7c77; font-size: 8px; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 26px; color: #656561; font-size: 9px; letter-spacing: .07em; }
.footer-bottom a { min-height: 40px; display: grid; place-items: center; }

.brief-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .78); backdrop-filter: blur(13px); opacity: 0; transition: opacity .28s ease; }
.modal-card {
  position: relative;
  width: min(650px, 100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #0b0b0b;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .68);
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .32s ease, transform .32s var(--ease);
}
.brief-modal.is-open .modal-backdrop, .brief-modal.is-open .modal-card { opacity: 1; }
.brief-modal.is-open .modal-card { transform: none; }
.modal-card h2 { margin-top: 21px; font-size: clamp(30px, 5vw, 46px); letter-spacing: -.045em; }
.modal-card > p { margin: 15px 0 21px; color: var(--muted); line-height: 1.6; }
.modal-card textarea { width: 100%; min-height: 225px; margin-bottom: 15px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #050505; color: #d2d2cc; resize: vertical; }
.modal-close { position: absolute; top: 15px; right: 16px; width: 44px; height: 44px; border: 0; background: transparent; color: #9d9d98; font-size: 28px; cursor: pointer; }

.motion-ready .reveal { opacity: 0; transform: translateY(26px); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; transition: opacity .8s ease, transform .85s var(--ease); }
.motion-ready .reveal.delay-1.is-visible { transition-delay: .11s; }
.motion-ready .reveal.delay-2.is-visible { transition-delay: .2s; }

.error-page { min-height: 100svh; display: grid; place-items: center; padding: 28px; }
.error-page main { width: min(880px, 100%); }
.error-page h1 { margin: 30px 0; color: var(--gold); font-size: clamp(90px, 20vw, 240px); line-height: .75; letter-spacing: -.08em; }
.error-page h1 span { display: block; margin-top: 30px; color: var(--text); font-size: clamp(40px, 8vw, 92px); line-height: .9; }

@media (max-width: 1120px) {
  :root { --shell: 980px; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-button {
    position: relative;
    justify-self: end;
    width: 46px;
    height: 46px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(5, 5, 5, .75);
    cursor: pointer;
  }
  .menu-button span { position: absolute; right: 12px; left: 12px; top: 18px; height: 1px; background: #fff; transition: transform .25s var(--ease), top .25s var(--ease); }
  .menu-button span:last-child { top: 26px; }
  .menu-button[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 48px;
    padding: 110px max(28px, calc((100vw - 760px) / 2)) 45px;
    background: rgba(5, 5, 5, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .mobile-menu nav { display: grid; }
  .mobile-menu nav a { min-height: 76px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); font-size: clamp(30px, 7vw, 58px); font-weight: 740; letter-spacing: -.04em; }
  .mobile-menu nav a span { color: var(--gold); font-size: 9px; letter-spacing: .18em; }
  .mobile-menu > p { color: #666; font-size: 10px; font-weight: 750; letter-spacing: .18em; line-height: 1.8; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); gap: 38px; }
  .hero h1 { font-size: clamp(54px, 8.1vw, 88px); }
  .hero-visual { min-height: 610px; }
  .orbit-one { width: 520px; }
  .orbit-two { width: 390px; }
  .service-panel { grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); }
  .service-panel-ai { grid-template-columns: minmax(0, 1fr) minmax(360px, 440px); }
  .systems-panel { grid-template-columns: 1fr 400px; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .section-shell, .header-inner, .footer-inner { width: min(100% - 36px, 760px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 44px; padding-top: 124px; padding-bottom: 95px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(60px, 12.5vw, 96px); }
  .hero-intro { max-width: 690px; }
  .hero-visual { min-height: 720px; }
  .hero-frame { max-width: 470px; }
  .scroll-cue { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 46px; }
  .manifesto-copy { max-width: 700px; }
  .section-header { align-items: flex-start; flex-direction: column; gap: 28px; }
  .section-header > p { max-width: 620px; }
  .service-panels, .service-panel { min-height: auto; }
  .service-panel, .service-panel-ai { grid-template-columns: 1fr; }
  .service-media, .ai-canvas { justify-self: center; width: min(100%, 470px); }
  .service-copy { max-width: 680px; }
  .work-card-one { grid-column: 1 / span 7; }
  .work-card-two { grid-column: 8 / span 5; margin-top: 90px; }
  .work-card-three { grid-column: 1 / span 5; margin-top: 0; }
  .work-card-four { grid-column: 6 / span 7; margin-top: 70px; }
  .systems-panel { grid-template-columns: 1fr; }
  .system-window { width: min(100%, 620px); transform: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .brief-form { max-width: 680px; }
}

@media (max-width: 640px) {
  .section-shell, .header-inner, .footer-inner { width: min(100% - 28px, 600px); }
  .site-header, .site-header.is-scrolled { height: 66px; border-color: rgba(255, 255, 255, .08); background: rgba(5, 5, 5, .88); backdrop-filter: blur(16px); }
  .brand { gap: 7px; }
  .brand img { width: 39px; }
  .brand strong { font-size: 9px; }
  .brand small { font-size: 6px; }
  .menu-button { width: 44px; height: 44px; }
  .mobile-menu { padding-inline: 22px; }
  .hero { padding-top: 108px; padding-bottom: 76px; gap: 28px; }
  .eyebrow { font-size: 8px; letter-spacing: .19em; }
  .hero h1 { margin-top: 21px; font-size: clamp(48px, 15.2vw, 76px); line-height: .86; letter-spacing: -.065em; }
  .hero-intro { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 9px; margin-top: 28px; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; justify-content: center; }
  .hero-meta { margin-top: 34px; }
  .hero-visual { min-height: 540px; }
  .hero-frame { width: min(86%, 340px); border-radius: 24px; transform: rotate(1.2deg); }
  .orbit-one { width: 440px; }
  .orbit-two { width: 340px; }
  .float-label { font-size: 7px; padding: 8px 9px; }
  .label-one { left: 0; }
  .label-two { right: 0; }
  .display-title { font-size: clamp(40px, 12.2vw, 63px); line-height: .94; }
  .manifesto { padding-block: 100px 92px; }
  .manifesto-grid { margin-top: 35px; gap: 36px; }
  .manifesto-copy .lead { font-size: 21px; }
  .manifesto-copy > p { font-size: 15px; }
  .manifesto-points { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .manifesto-points div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
  .manifesto-points span { text-align: right; }
  .services { padding-block: 92px 110px; }
  .section-header { margin-bottom: 35px; }
  .section-header > p { font-size: 14px; }
  .service-tabs { margin-right: -14px; padding-right: 14px; }
  .service-tabs button { min-width: 108px; min-height: 47px; }
  .service-panels { border-radius: 25px; }
  .service-panel { gap: 42px; padding: 28px 18px 20px; }
  .service-copy h3 { margin-top: 17px; font-size: clamp(44px, 14.5vw, 70px); }
  .service-copy p { margin-top: 22px; font-size: 16px; }
  .service-copy ul { margin-top: 27px; }
  .service-media { width: min(100%, 390px); border-radius: 19px; }
  .ai-canvas { width: min(100%, 390px); }
  .ai-core { width: 120px; }
  .work { padding-block: 90px 110px; }
  .work-grid { grid-template-columns: 1fr; gap: 20px; }
  .work-card-one, .work-card-two, .work-card-three, .work-card-four { grid-column: auto; margin-top: 0; }
  .work-card { width: 100%; border-radius: 20px; }
  .work-card:nth-child(even) { width: 90%; margin-left: auto; }
  .work-card figcaption { right: 11px; bottom: 11px; left: 11px; }
  .systems { padding-block: 20px 105px; }
  .systems-panel { gap: 42px; padding: 29px 19px 19px; border-radius: 25px; }
  .systems-copy .display-title { font-size: clamp(38px, 11.2vw, 57px); }
  .systems-copy > p { margin-block: 24px 28px; font-size: 15px; }
  .system-body { min-height: 310px; padding: 28px; }
  .system-mark { font-size: 56px; }
  .system-metric { right: 13px; }
  .statement { padding-block: 90px 108px; }
  .statement blockquote { font-size: clamp(43px, 13vw, 68px); }
  .contact { padding-block: 95px 110px; }
  .contact-copy .display-title { font-size: clamp(41px, 12vw, 62px); }
  .field input, .field textarea, .field select { font-size: 16px; }
  .footer-inner { padding-top: 45px; }
  .footer-top { align-items: flex-start; flex-direction: column; }
  .footer-brand { width: 165px; }
  .footer-top > p { text-align: left; }
  .footer-services { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .pointer-glow { display: none; }
  .modal-card { padding: 28px 20px 20px; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: clamp(46px, 14.4vw, 62px); }
  .hero-visual { min-height: 500px; }
  .hero-frame { width: min(84%, 310px); }
  .orbit-one { width: 390px; }
  .orbit-two { width: 300px; }
  .float-label { max-width: 128px; line-height: 1.4; text-align: center; }
  .work-card:nth-child(even) { width: 94%; }
  .system-body { min-height: 280px; padding: 24px; }
  .system-lines { margin-top: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal, .motion-ready .reveal.is-visible { opacity: 1; transform: none; }
  .hero-frame, .system-window { transform: none !important; }
}
