@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/instrument-serif-latin-400-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #090a0a;
  --bg-raised: #101212;
  --bg-soft: #151717;
  --bg-quiet: #0c0d0d;
  --ink: #f2efe8;
  --ink-soft: #a7a8a3;
  --ink-faint: #777a76;
  --accent: #ff624a;
  --accent-deep: #d94834;
  --teal: #56c8b5;
  --amber: #f0bd58;
  --violet: #b995e8;
  --line: rgba(242, 239, 232, 0.14);
  --line-strong: rgba(242, 239, 232, 0.34);
  --line-bright: rgba(242, 239, 232, 0.62);
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --type-label: 0.8rem;
  --type-meta: 0.75rem;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-synthesis: none;
  font-weight: 390;
  line-height: 1.64;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  border: 18px solid var(--bg);
  content: "";
  pointer-events: none;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: 5.55rem;
  line-height: 0.92;
}

h2 {
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 16px;
  font-size: 2rem;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--accent);
  font-weight: 400;
}

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

[id] {
  scroll-margin-top: 88px;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -64px;
  z-index: 100;
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: var(--type-label);
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 10, 0.94);
  backdrop-filter: blur(16px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 180ms ease, transform 320ms ease;
}

.site-header.is-scrolled::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.header-inner {
  display: flex;
  width: min(var(--content-width), calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.1;
}

.brand-link img,
.footer-brand img {
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}

.brand-link img {
  width: 34px;
  height: 34px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  transition: color 150ms ease;
}

.site-nav a::before {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav a:hover::before,
.site-nav a:focus-visible::before,
.site-nav a.is-active::before,
.site-nav a[aria-current="page"]::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button,
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  padding: 10px 17px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.1;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.header-cta,
.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.button:hover,
.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #080909;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 150ms ease, opacity 150ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.section-band,
.section-wrap {
  position: relative;
}

.section-wrap {
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 116px 0;
}

.eyebrow,
.panel-label,
.panel-foot {
  margin: 0;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--accent);
  content: "";
  transform: translateY(-1px);
}

.hero {
  min-height: 620px;
  overflow: hidden;
  padding: 0 max(28px, calc((100vw - var(--content-width)) / 2)) 24px;
  background: var(--bg);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(28px, calc((100vw - var(--content-width)) / 2));
  z-index: 0;
  width: 1px;
  background: var(--accent);
  content: "";
  opacity: 0.28;
  animation: hero-scan 10s linear infinite;
}

.hero-grid {
  display: grid;
  position: absolute;
  inset: 0 max(28px, calc((100vw - var(--content-width)) / 2));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  pointer-events: none;
}

.hero-grid span {
  border-left: 1px dotted rgba(242, 239, 232, 0.11);
}

.hero-grid span:last-child {
  border-right: 1px dotted rgba(242, 239, 232, 0.11);
}

.hero-layout {
  display: grid;
  position: relative;
  z-index: 1;
  min-height: 596px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: end;
  gap: 74px;
  padding-top: 48px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.hero-copy > * {
  animation: rise-in 650ms both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 240ms;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 30px;
  color: #c6c6c0;
  font-size: 1.12rem;
  font-weight: 360;
  line-height: 1.58;
}

.hero-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-brief,
.community-brief {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border: 1px solid var(--line-strong);
  background: var(--bg-raised);
}

.hero-brief {
  transform: perspective(1100px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: border-color 180ms ease, transform 160ms ease-out;
  animation: frame-in 760ms 180ms both;
}

.hero-brief:hover {
  border-color: rgba(255, 98, 74, 0.64);
}

.brief-header {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  font-style: normal;
  text-transform: uppercase;
}

.brief-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.brief-status i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.brief-logo {
  display: grid;
  position: relative;
  min-height: 240px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #050606;
}

.brief-logo > img {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  object-fit: cover;
  mix-blend-mode: screen;
  transform: translateZ(26px);
}

.motion-field,
.motion-line,
.motion-pulse,
.motion-corner {
  position: absolute;
  pointer-events: none;
}

.motion-field {
  inset: 0;
  z-index: 1;
}

.motion-line-horizontal {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(86, 200, 181, 0.35);
  animation: scan-y 5.4s ease-in-out infinite alternate;
}

.motion-line-vertical {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 98, 74, 0.38);
  animation: scan-x 6.8s ease-in-out infinite alternate;
}

.motion-pulse {
  width: 8px;
  height: 8px;
  background: var(--teal);
}

.motion-pulse-one {
  top: 22px;
  left: 22px;
  animation: pulse-track-one 7s linear infinite;
}

.motion-pulse-two {
  right: 22px;
  bottom: 22px;
  background: var(--accent);
  animation: pulse-track-two 8s linear infinite;
}

.motion-corner {
  width: 34px;
  height: 34px;
}

.motion-corner-one {
  top: 20px;
  right: 20px;
  border-top: 1px solid var(--line-bright);
  border-right: 1px solid var(--line-bright);
}

.motion-corner-two {
  bottom: 20px;
  left: 20px;
  border-bottom: 1px solid var(--line-bright);
  border-left: 1px solid var(--line-bright);
}

.motion-readout {
  display: flex;
  position: absolute;
  right: 16px;
  bottom: 12px;
  left: 16px;
  z-index: 3;
  justify-content: space-between;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.brief-row {
  display: grid;
  min-height: 45px;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.brief-row span,
.brief-row em,
.brief-footer {
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.brief-row strong {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
}

.brief-footer {
  padding: 15px 18px;
  line-height: 1.5;
}

.signal-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-soft);
  color: var(--ink);
}

.signal-strip-inner {
  display: grid;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 190px minmax(0, 1fr);
}

.signal-strip-inner > p {
  display: flex;
  min-height: 72px;
  margin: 0;
  align-items: center;
  padding: 0 22px 0 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-strip-inner ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.signal-strip li {
  display: flex;
  position: relative;
  min-height: 72px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 0 20px 0 38px;
  color: var(--ink-soft);
  font-size: var(--type-label);
}

.signal-strip li::before {
  position: absolute;
  left: 18px;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
  opacity: 0.66;
  animation: signal-blink 3s steps(2, end) infinite;
}

.signal-strip li:nth-child(2)::before {
  background: var(--accent);
  animation-delay: 500ms;
}

.signal-strip li:nth-child(3)::before {
  background: var(--amber);
  animation-delay: 1s;
}

.signal-strip li:nth-child(4)::before {
  background: var(--violet);
  animation-delay: 1.5s;
}

.section-heading {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 42px;
  margin-bottom: 64px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 54px;
}

.section-heading .eyebrow {
  padding-top: 10px;
}

.section-heading-copy {
  min-width: 0;
}

.section-heading-copy h2 {
  max-width: 820px;
}

.section-heading-copy > p {
  max-width: 680px;
  margin: 4px 0 0;
  font-size: 1.04rem;
  font-weight: 360;
  line-height: 1.66;
}

.services,
.approach,
.faq {
  background: var(--bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.service-card {
  --card-accent: var(--accent);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: flex;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 26px;
  background: var(--bg-quiet);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transform-style: preserve-3d;
  transition: background-color 180ms ease, border-color 180ms ease, transform 160ms ease-out;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--card-accent);
  content: "";
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 300ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: color-mix(in srgb, var(--card-accent) 62%, transparent);
  background: var(--bg-raised);
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: scaleX(1);
}

.service-teal {
  --card-accent: var(--teal);
}

.service-yellow {
  --card-accent: var(--amber);
}

.service-pink {
  --card-accent: var(--violet);
}

.service-number {
  display: flex;
  margin-bottom: 30px;
  justify-content: space-between;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
}

.service-number::before {
  color: var(--ink-faint);
  content: "Service";
  text-transform: uppercase;
}

.service-signal {
  display: flex;
  height: 52px;
  margin-bottom: 34px;
  align-items: end;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  padding: 0 4px 8px;
}

.service-signal span {
  width: 8px;
  height: 10px;
  background: var(--card-accent);
  opacity: 0.62;
  transition: height 260ms ease, opacity 260ms ease;
}

.service-signal span:nth-child(2) {
  height: 22px;
}

.service-signal span:nth-child(3) {
  height: 15px;
}

.service-signal span:nth-child(4) {
  height: 34px;
}

.service-card:hover .service-signal span,
.service-card:focus-within .service-signal span {
  height: 34px;
  opacity: 1;
}

.service-card:hover .service-signal span:nth-child(2),
.service-card:focus-within .service-signal span:nth-child(2) {
  height: 15px;
}

.service-card:hover .service-signal span:nth-child(3),
.service-card:focus-within .service-signal span:nth-child(3) {
  height: 28px;
}

.service-card:hover .service-signal span:nth-child(4),
.service-card:focus-within .service-signal span:nth-child(4) {
  height: 20px;
}

.service-card h3 {
  max-width: 230px;
}

.service-card > p:not(.service-number):not(.service-for) {
  margin-bottom: 24px;
  font-size: 0.94rem;
}

.service-for {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: var(--type-label);
  line-height: 1.6;
}

.service-for strong {
  color: var(--card-accent);
  font-weight: 500;
}

.service-link {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.service-link span {
  color: var(--card-accent);
  font-size: 1rem;
  transition: transform 160ms ease;
}

.service-link:hover span,
.service-link:focus-visible span {
  transform: translate(3px, -3px);
}

.about {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 116px max(28px, calc((100vw - var(--content-width)) / 2));
  background: var(--bg-raised);
}

.about-copy {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 42px;
  width: 100%;
  align-items: start;
}

.about-copy .eyebrow {
  padding-top: 10px;
}

.about-content {
  max-width: 860px;
}

.about h2 {
  max-width: 720px;
  font-size: 4.5rem;
}

.about p {
  max-width: 680px;
}

.about-lede {
  color: #d1d0ca;
  font-size: 1.12rem;
  font-weight: 360;
  line-height: 1.64;
}

.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-principles span {
  position: relative;
  padding: 14px 12px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  text-align: center;
  text-transform: uppercase;
}

.brand-principles span::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  background: var(--teal);
  content: "";
}

.brand-principles span:nth-child(2)::before {
  background: var(--accent);
}

.brand-principles span:nth-child(3)::before {
  background: var(--amber);
}

.brand-principles span:last-child {
  border-right: 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}

.approach-grid > div {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  padding: 30px;
  background: var(--bg-quiet);
  transition: background-color 180ms ease;
}

.approach-grid > div::after {
  position: absolute;
  right: -12px;
  bottom: -40px;
  color: rgba(242, 239, 232, 0.04);
  content: attr(data-step);
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  pointer-events: none;
}

.approach-grid > div:hover {
  background: var(--bg-raised);
}

.step-number {
  margin-bottom: 74px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
}

.step-number::before {
  color: var(--ink-faint);
  content: "Step ";
}

.approach-grid h3 {
  max-width: 270px;
}

.approach-grid p:last-child {
  max-width: 310px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.96fr);
  align-items: center;
  gap: 100px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 116px max(28px, calc((100vw - var(--content-width)) / 2));
  background: #101311;
}

.community-copy .eyebrow {
  margin-bottom: 26px;
}

.community h2 {
  font-size: 5.3rem;
}

.community-lede {
  max-width: 680px;
  color: #d1d0ca;
  font-size: 1.12rem;
  font-weight: 360;
  line-height: 1.64;
}

.community-copy > p {
  max-width: 660px;
}

.check-list {
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 14px 10px 14px 30px;
  color: var(--ink-soft);
  font-size: var(--type-label);
}

.check-list li::before {
  position: absolute;
  left: 8px;
  top: 20px;
  width: 7px;
  height: 7px;
  background: var(--teal);
  content: "";
}

.community-note {
  margin-bottom: 0;
  color: var(--ink-faint);
  font-size: var(--type-label);
}

.community-brief {
  background: #0b0e0c;
}

.community-monogram {
  min-height: 244px;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 30px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 8.4rem;
  line-height: 1;
  animation: monogram-shift 7s ease-in-out infinite alternate;
}

.community-monogram span {
  color: var(--teal);
  font-style: italic;
}

.community-brief dl {
  margin-bottom: 0;
}

.community-brief dl div {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: var(--type-meta);
}

.community-brief dl div:last-child {
  border-bottom: 0;
}

.community-brief dt {
  color: var(--ink-faint);
}

.community-brief dd {
  margin-bottom: 0;
  color: var(--ink);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 400;
  list-style: none;
  transition: color 150ms ease, padding-left 180ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--accent);
  content: "+";
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: background-color 150ms ease, color 150ms ease, transform 180ms ease;
}

.faq-list summary:hover {
  color: var(--accent);
  padding-left: 10px;
}

.faq-list details[open] summary::after {
  background: var(--accent);
  color: var(--bg);
  content: "−";
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 780px;
  margin-bottom: 0;
  padding: 0 4px 30px;
}

.faq-list a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact {
  border-top: 1px solid var(--line-strong);
  background: var(--accent);
  color: #080909;
}

.contact-inner {
  display: grid;
  width: min(var(--content-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: end;
  gap: 96px;
}

.contact .eyebrow,
.contact .eyebrow::before {
  color: rgba(8, 9, 9, 0.68);
}

.contact .eyebrow::before {
  background: #080909;
}

.contact h2 {
  max-width: 780px;
  margin: 28px 0 0;
  color: #080909;
  font-size: 5.05rem;
}

.contact h2 em {
  color: #080909;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.contact-copy p {
  color: rgba(8, 9, 9, 0.72);
  font-weight: 400;
  line-height: 1.64;
}

.contact .button-dark {
  border-color: #080909;
  background: #080909;
  color: var(--ink);
}

.contact .button-dark:hover {
  border-color: #080909;
  background: transparent;
  color: #080909;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 30px;
  padding: 34px max(24px, calc((100vw - var(--content-width)) / 2));
  border-top: 1px solid var(--line);
  background: #050606;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
}

.footer-brand span,
.copyright {
  color: var(--ink-faint);
  font-size: var(--type-meta);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: var(--type-label);
}

.site-footer a:hover {
  color: var(--accent);
}

.copyright {
  justify-self: end;
  margin: 0;
  text-align: right;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  width: min(480px, calc(100% - 40px));
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line-bright);
  border-radius: 2px;
  padding: 18px;
  background: var(--bg-soft);
  box-shadow: 8px 8px 0 rgba(255, 98, 74, 0.18);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.84rem;
}

.cookie-banner .cookie-title {
  margin-bottom: 5px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
  text-transform: uppercase;
}

.cookie-actions {
  align-items: center;
  justify-content: flex-end;
}

.cookie-actions > a {
  color: var(--ink-soft);
  font-size: var(--type-label);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions .button {
  min-height: 36px;
  padding: 8px 12px;
}

.legal-page {
  min-height: 70vh;
  background: var(--bg);
}

.legal-hero {
  border-bottom: 1px solid var(--line-strong);
  padding: 94px max(24px, calc((100vw - 900px) / 2)) 72px;
  background: var(--bg-raised);
}

.legal-hero .eyebrow {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: 5.2rem;
}

.legal-hero > p:last-child {
  margin-bottom: 0;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: var(--type-meta);
}

.legal-content {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 116px;
}

.legal-content h2 {
  margin: 56px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 2.2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  max-width: 800px;
  color: var(--ink-soft);
}

.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background: var(--bg);
  text-align: center;
}

.not-found img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  mix-blend-mode: screen;
}

.not-found h1 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 4.4rem;
}

.not-found p {
  margin-bottom: 12px;
}

.js .reveal-item {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 560ms ease, translate 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes frame-in {
  from {
    opacity: 0;
    transform: perspective(1100px) translateY(24px) rotateX(2deg);
  }
  to {
    opacity: 1;
    transform: perspective(1100px) translateY(0) rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  }
}

@keyframes hero-scan {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(min(1200px, calc(100vw - 56px)));
  }
}

@keyframes status-pulse {
  0%, 100% {
    opacity: 0.44;
    transform: scale(0.78);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes scan-y {
  from {
    transform: translateY(-92px);
  }
  to {
    transform: translateY(92px);
  }
}

@keyframes scan-x {
  from {
    transform: translateX(-170px);
  }
  to {
    transform: translateX(170px);
  }
}

@keyframes pulse-track-one {
  0% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(310px, 0);
  }
  70% {
    transform: translate(310px, 180px);
  }
  100% {
    transform: translate(0, 180px);
  }
}

@keyframes pulse-track-two {
  0% {
    transform: translate(0, 0);
  }
  35% {
    transform: translate(-310px, 0);
  }
  70% {
    transform: translate(-310px, -180px);
  }
  100% {
    transform: translate(0, -180px);
  }
}

@keyframes signal-blink {
  0%, 68% {
    opacity: 0.34;
  }
  70%, 100% {
    opacity: 0.9;
  }
}

@keyframes monogram-shift {
  from {
    padding-left: 30px;
  }
  to {
    padding-left: 62px;
  }
}

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

  .site-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 40px;
  }

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

  .service-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 460px;
  }

  .pulse-track-one,
  .pulse-track-two {
    animation: none;
  }
}

@media (max-width: 860px) {
  .header-inner {
    position: relative;
    width: min(100% - 28px, var(--content-width));
    min-height: 66px;
  }

  .brand-link img {
    width: 31px;
    height: 31px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: -14px;
    top: calc(100% + 1px);
    left: -14px;
    border-bottom: 1px solid var(--line-strong);
    padding: 12px 18px 18px;
    background: var(--bg-raised);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 13px 2px;
  }

  .site-nav a::before {
    display: none;
  }

  .section-wrap {
    padding: 90px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-layout,
  .about,
  .community,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
    align-items: start;
    padding: 60px 0 32px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-brief {
    width: min(580px, 100%);
  }

  .signal-strip {
    display: block;
  }

  .signal-strip-inner {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .signal-strip-inner ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 30px;
  }

  .about-copy {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-copy .eyebrow {
    padding-top: 0;
  }

  .about,
  .community {
    gap: 64px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .community-brief {
    width: min(540px, 100%);
  }

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

  .approach-grid > div {
    min-height: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-grid > div:last-child {
    border-bottom: 0;
  }

  .step-number {
    margin-bottom: 36px;
  }

  .contact-inner {
    align-items: start;
    gap: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .copyright {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  body::before {
    display: none;
  }

  h1 {
    font-size: 3.45rem;
    line-height: 0.96;
  }

  h2,
  .about h2,
  .contact h2,
  .legal-hero h1,
  .not-found h1 {
    font-size: 3.05rem;
  }

  .section-wrap {
    width: min(100% - 28px, var(--content-width));
    padding: 76px 0;
  }

  .hero {
    min-height: 620px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-brief {
    display: none;
  }

  .hero-grid {
    right: 18px;
    left: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid span:nth-child(n + 4) {
    display: none;
  }

  .hero-layout {
    min-height: 596px;
    padding: 36px 0 24px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 18px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .signal-strip {
    display: block;
  }

  .signal-strip-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .signal-strip-inner > p {
    min-height: 48px;
    padding: 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip-inner ul {
    padding: 0;
  }

  .signal-strip li {
    min-height: 54px;
    padding-left: 40px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 40px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
  }

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

  .service-card {
    min-height: 460px;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .service-signal {
    margin-bottom: 30px;
  }

  .about,
  .community {
    gap: 46px;
    padding: 76px 18px;
  }

  .brand-principles {
    grid-template-columns: 1fr;
  }

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

  .brand-principles span:last-child {
    border-bottom: 0;
  }

  .approach-grid > div {
    padding: 26px;
  }

  .community h2 {
    font-size: 3.55rem;
  }

  .community-monogram {
    min-height: 190px;
    font-size: 6rem;
  }

  .community-brief dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 1.4rem;
  }

  .contact-inner {
    width: min(100% - 28px, var(--content-width));
    padding: 76px 0;
  }

  .button-dark {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer {
    padding: 30px 18px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .legal-hero {
    padding: 64px 18px 48px;
  }

  .legal-content {
    width: min(100% - 28px, 900px);
    padding: 54px 0 84px;
  }
}

@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-item {
    opacity: 1;
    translate: 0 0;
  }
}
