@font-face {
  font-family: "Alliance No. 1";
  src: url("./18theses-fonts/alliance-no1-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alliance No. 1";
  src: url("./18theses-fonts/alliance-no1-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alliance No. 1";
  src: url("./18theses-fonts/alliance-no1-500-italic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Alliance No. 1";
  src: url("./18theses-fonts/alliance-no1-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Apercu Mono";
  src: url("./18theses-fonts/apercu-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Apercu Mono";
  src: url("./18theses-fonts/apercu-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rosart";
  src: url("./18theses-fonts/rosart-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rosart";
  src: url("./18theses-fonts/rosart-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --black: #000000;
  --black-soft: #222223;
  --ink: #101010;
  --paper: #f4f4e4;
  --paper-dim: #d1d0c1;
  --green: #4a9a96;
  --green-dark: #2f6668;
  --line: rgba(74, 154, 150, 0.82);
  --line-soft: rgba(244, 244, 228, 0.18);
  --corner: 40px;
  --gutter: 90px;
  --outside: 10px;
  --duration: 0.25s;
  --sans: "Alliance No. 1", Arial, Helvetica, sans-serif;
  --serif: "Rosart", Georgia, "Times New Roman", serif;
  --mono: "Apercu Mono", "SFMono-Regular", Consolas, monospace;
  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

body.iris-page {
  --black: #000000;
  --black-soft: #222223;
  --ink: #101010;
  --paper: #f4f4e4;
  --paper-dim: #d1d0c1;
  --green: #4a9a96;
  --green-dark: #2f6668;
  --line: rgba(74, 154, 150, 0.82);
  --line-soft: rgba(244, 244, 228, 0.18);
  background:
    radial-gradient(circle at 72% 16%, rgba(74, 154, 150, 0.12), transparent 30%),
    var(--black);
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.shell {
  min-height: 100vh;
}

.banner {
  min-height: 80px;
  margin: 0 70px 40px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background: var(--green);
  color: var(--black);
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1;
}

.banner p,
.banner strong {
  margin: 0;
  font-weight: 500;
}

.banner a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 10px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.banner a::after,
.button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.banner-mark,
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.banner-mark {
  border: 1px solid var(--black);
}

.identity-mark {
  width: 18px;
  height: 18px;
  display: block;
  overflow: visible;
}

.identity-mark path,
.identity-mark circle {
  vector-effect: non-scaling-stroke;
}

.identity-wing {
  fill: currentColor;
}

.identity-cut {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 46;
  stroke-dashoffset: 46;
  animation: markTrace 900ms ease-out 120ms forwards;
}

.identity-node {
  fill: var(--paper);
  stroke: currentColor;
  stroke-width: 1;
}

.banner .identity-node {
  fill: var(--green);
}

.banner .identity-cut {
  stroke: var(--green);
}

.asset-logo-mark {
  overflow: hidden;
  background: var(--black-soft);
  color: var(--green);
}

.asset-logo-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.78) contrast(1.12);
}

.iris-page .banner {
  background: var(--green);
  color: var(--black);
  border: 0;
  box-shadow: none;
}

.iris-page .banner-mark {
  border-color: var(--black);
}

.iris-page .banner a {
  color: var(--black);
  background: transparent;
}

.iris-page .nav::before {
  background: rgba(34, 34, 35, 0.75);
  border: 0;
  box-shadow: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 16px;
  align-items: end;
  height: 60px;
  padding: 0 var(--gutter) 15px;
  color: var(--paper);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0 var(--outside);
  z-index: -1;
  background: rgba(34, 34, 35, 0.72);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  backdrop-filter: blur(12px);
}

.nav::after {
  content: "";
  height: 1px;
  background: var(--green);
  align-self: center;
}

.nav-progress {
  position: absolute;
  right: var(--outside);
  bottom: 0;
  left: var(--outside);
  height: 1px;
  background: var(--green);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  color: var(--green);
  border: 1px solid var(--green);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--paper-dim);
}

.nav-links a:hover {
  color: var(--paper);
}

.hero {
  min-height: calc(100svh - 180px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 70px;
  align-items: center;
  padding: 36px var(--gutter) 64px;
}

.asset-hero {
  position: relative;
  min-height: clamp(720px, calc(100svh - 120px), 980px);
  margin: 0 var(--outside) var(--outside);
  padding-top: 76px;
  overflow: hidden;
  border-radius: var(--corner);
  isolation: isolate;
}

.asset-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--black);
}

.asset-backdrop video,
.asset-backdrop img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.92) saturate(0.58) contrast(1.16);
  opacity: 0.42;
}

.asset-backdrop::before,
.asset-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asset-backdrop::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 44%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.96));
}

.asset-backdrop::after {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(74, 154, 150, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 154, 150, 0.14) 1px, transparent 1px);
  background-size: 100px 100px;
}

.iris-page .hero-copy {
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.72);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

.eyebrow,
.section-label,
.stat-label,
.kicker {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 26px;
  color: var(--green);
}

h1 {
  max-width: 990px;
  font-family: var(--sans);
  font-size: 7.15rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.iris-page h1 {
  max-width: 760px;
  font-family: var(--sans);
  font-size: 6.25rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-lede {
  max-width: 760px;
  margin-top: 28px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.iris-page .hero-lede {
  max-width: 620px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 145px;
  padding: 0 10px;
  border: 1px solid var(--green);
  background: transparent;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 58px;
  padding-top: 16px;
  border-top: 1px solid var(--green);
}

.hero-facts div {
  min-width: 0;
}

.hero-facts span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-facts strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-art {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.field-card {
  width: min(100%, 660px);
  aspect-ratio: 1;
  position: relative;
  overflow: visible;
}

.field-card svg {
  width: 100%;
  height: 100%;
  display: block;
}

.iris-page .field-card {
  padding: 0;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--green);
  box-shadow: none;
  backdrop-filter: none;
}

.signature-visual {
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 154, 150, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(244, 244, 228, 0.035), transparent 48%);
}

.iris-page .signature-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 154, 150, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(244, 244, 228, 0.035), transparent 50%);
}

.iris-page .sig-frame {
  fill: rgba(244, 244, 228, 0.025);
  stroke: rgba(244, 244, 228, 0.24);
}

.iris-page .sig-grid {
  stroke: rgba(244, 244, 228, 0.1);
}

.iris-page .signature-visual .sig-app rect,
.iris-page .signature-visual .sig-app path,
.iris-page .signature-visual .sig-core circle,
.iris-page .signature-visual .sig-core path,
.iris-page .signature-visual .sig-endpoints path,
.iris-page .signature-visual .sig-operator rect,
.iris-page .signature-visual .sig-operator path,
.iris-page .signature-visual .sig-proxy path,
.iris-page .signature-visual .sig-triage path {
  stroke: rgba(244, 244, 228, 0.92);
}

.iris-page .signature-visual .sig-packet {
  filter: none;
}

.squircle-diagram {
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 154, 150, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(244, 244, 228, 0.03), transparent 52%);
}

.squircle-shell {
  fill: rgba(0, 0, 0, 0.24);
  stroke: var(--green);
  stroke-width: 1.35;
  stroke-dasharray: 1960;
  stroke-dashoffset: 1960;
  animation: drawLine 1.5s ease-out forwards;
}

.squircle-grid,
.squircle-axis,
.squircle-ray,
.squircle-node path,
.squircle-node circle,
.squircle-ring,
.squircle-scan {
  vector-effect: non-scaling-stroke;
}

.squircle-grid {
  fill: none;
  stroke: rgba(244, 244, 228, 0.09);
  stroke-width: 1;
}

.squircle-grid.soft {
  stroke: rgba(244, 244, 228, 0.045);
}

.squircle-scan {
  fill: none;
  stroke: var(--green);
  stroke-width: 1;
  stroke-dasharray: 1 18;
  opacity: 0.56;
  animation: scanFloat 3.8s ease-in-out infinite;
}

.squircle-ring {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.2;
  transform-origin: center;
  transform-box: fill-box;
}

.squircle-ring.outer {
  fill: rgba(74, 154, 150, 0.08);
  stroke-dasharray: 18 14;
  animation: driftDash 20s linear infinite;
}

.squircle-ring.mid {
  stroke: rgba(244, 244, 228, 0.74);
}

.squircle-ring.inner {
  fill: rgba(0, 0, 0, 0.42);
  stroke: var(--paper);
}

.squircle-axis,
.squircle-ray {
  fill: none;
  stroke: rgba(244, 244, 228, 0.7);
  stroke-width: 1.1;
}

.squircle-ray {
  stroke: rgba(74, 154, 150, 0.9);
  stroke-dasharray: 8 12;
  animation: driftDash 18s linear infinite;
}

.squircle-node path,
.squircle-node circle {
  fill: none;
  stroke: rgba(244, 244, 228, 0.88);
  stroke-width: 1.2;
}

.squircle-node path:first-child {
  fill: rgba(74, 154, 150, 0.07);
  stroke: var(--green);
}

.squircle-node circle {
  fill: var(--green);
  stroke: var(--paper);
}

html.js .reveal .squircle-shell,
html.js .reveal .squircle-scan,
html.js .reveal .squircle-ray,
html.js .reveal .squircle-ring.outer {
  animation: none;
}

html.js .reveal.is-visible .squircle-shell {
  animation: drawLine 1.5s ease-out forwards;
}

html.js .reveal.is-visible .squircle-scan {
  animation: scanFloat 3.8s ease-in-out 800ms infinite;
}

html.js .reveal.is-visible .squircle-ray,
html.js .reveal.is-visible .squircle-ring.outer {
  animation: driftDash 20s linear 500ms infinite;
}

html.js .reveal .squircle-core,
html.js .reveal .squircle-node {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

html.js .reveal.is-visible .squircle-core,
html.js .reveal.is-visible .squircle-node {
  opacity: 1;
  transform: translateZ(0);
}

html.js .reveal.is-visible .squircle-core {
  transition-delay: 80ms;
}

html.js .reveal.is-visible .node-left {
  transition-delay: 150ms;
}

html.js .reveal.is-visible .node-top {
  transition-delay: 220ms;
}

html.js .reveal.is-visible .node-right {
  transition-delay: 290ms;
}

html.js .reveal.is-visible .node-bottom {
  transition-delay: 360ms;
}

.sig-frame {
  fill: rgba(244, 244, 228, 0.025);
  stroke: rgba(244, 244, 228, 0.24);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.sig-grid {
  fill: none;
  stroke: rgba(244, 244, 228, 0.1);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.sig-route {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawLine 1.5s ease-out forwards;
  vector-effect: non-scaling-stroke;
}

.sig-route.endpoint-route,
.sig-route.approval-route,
.sig-route.domain-route {
  stroke: rgba(244, 244, 228, 0.58);
  animation-delay: 160ms;
}

.sig-route.proxy-route {
  stroke-dasharray: 8 12;
  stroke-dashoffset: 0;
  animation: driftDash 15s linear infinite;
}

html.js .sig-route,
html.js .signature-visual .scan-band,
html.js .signature-visual .sig-green {
  animation: none;
}

html.js .reveal.is-visible .sig-route:not(.proxy-route) {
  animation: drawLine 1.5s ease-out forwards;
}

html.js .reveal.is-visible .sig-route.endpoint-route,
html.js .reveal.is-visible .sig-route.domain-route {
  animation-delay: 180ms;
}

html.js .reveal.is-visible .sig-route.approval-route {
  animation-delay: 320ms;
}

html.js .reveal.is-visible .sig-route.proxy-route {
  animation: driftDash 15s linear 720ms infinite;
}

.signature-visual rect,
.signature-visual path,
.signature-visual circle {
  vector-effect: non-scaling-stroke;
}

.signature-visual .sig-app rect,
.signature-visual .sig-app path,
.signature-visual .sig-core circle,
.signature-visual .sig-core path,
.signature-visual .sig-endpoints path,
.signature-visual .sig-operator rect,
.signature-visual .sig-operator path,
.signature-visual .sig-proxy path,
.signature-visual .sig-triage path,
.signature-visual .sig-aperture circle,
.signature-visual .sig-aperture path,
.signature-visual .sig-noise path,
.signature-visual .sig-domains path,
.signature-visual .sig-actions path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.25;
}

.signature-visual .sig-core circle:first-child,
.signature-visual .sig-aperture circle,
.signature-visual .sig-operator rect {
  fill: rgba(74, 154, 150, 0.1);
  stroke: var(--green);
}

.signature-visual .sig-core circle:nth-child(2),
.signature-visual .sig-aperture path:first-of-type {
  stroke: rgba(74, 154, 150, 0.92);
  stroke-dasharray: 14 12;
  animation: driftDash 16s linear infinite;
}

.signature-visual .sig-endpoints circle,
.signature-visual .sig-noise circle,
.signature-visual .sig-domains circle,
.signature-visual .sig-actions circle {
  fill: var(--green);
  stroke: var(--paper);
  stroke-width: 1;
}

.signature-visual .sig-endpoints path {
  stroke: rgba(244, 244, 228, 0.46);
}

.signature-visual .sig-noise circle {
  opacity: 0.22;
  animation: noiseResolve 4.2s ease-in-out infinite;
}

.signature-visual .sig-noise circle:nth-child(2n) {
  animation-delay: 400ms;
}

.signature-visual .sig-noise circle:nth-child(3n) {
  animation-delay: 760ms;
}

.signature-visual .scan-band,
.signature-visual .sig-green {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: drawLine 1400ms ease-out 420ms forwards;
}

.signature-visual .sig-packet {
  fill: var(--green);
  stroke: var(--paper);
  stroke-width: 1;
  filter: drop-shadow(0 0 9px rgba(74, 154, 150, 0.92));
}

.signature-visual .sig-packet.alt {
  fill: var(--paper);
  stroke: var(--green);
}

html.js .reveal .signature-visual .sig-app,
html.js .reveal .signature-visual .sig-core,
html.js .reveal .signature-visual .sig-endpoints,
html.js .reveal .signature-visual .sig-operator,
html.js .reveal .signature-visual .sig-proxy,
html.js .reveal .signature-visual .sig-triage,
html.js .reveal .signature-visual .sig-aperture,
html.js .reveal .signature-visual .sig-noise,
html.js .reveal .signature-visual .sig-domains,
html.js .reveal .signature-visual .sig-actions,
html.js .reveal .signature-visual .sig-system {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition: opacity 420ms ease-out, transform 420ms ease-out;
}

html.js .reveal.is-visible .signature-visual .sig-app,
html.js .reveal.is-visible .signature-visual .sig-core,
html.js .reveal.is-visible .signature-visual .sig-endpoints,
html.js .reveal.is-visible .signature-visual .sig-operator,
html.js .reveal.is-visible .signature-visual .sig-proxy,
html.js .reveal.is-visible .signature-visual .sig-triage,
html.js .reveal.is-visible .signature-visual .sig-aperture,
html.js .reveal.is-visible .signature-visual .sig-noise,
html.js .reveal.is-visible .signature-visual .sig-domains,
html.js .reveal.is-visible .signature-visual .sig-actions,
html.js .reveal.is-visible .signature-visual .sig-system {
  opacity: 1;
  transform: translateZ(0);
}

html.js .reveal.is-visible .signature-visual .sig-core,
html.js .reveal.is-visible .signature-visual .sig-aperture {
  transition-delay: 80ms;
}

html.js .reveal.is-visible .signature-visual .sig-app,
html.js .reveal.is-visible .signature-visual .sig-noise {
  transition-delay: 160ms;
}

html.js .reveal.is-visible .signature-visual .sig-endpoints,
html.js .reveal.is-visible .signature-visual .sig-domains {
  transition-delay: 260ms;
}

html.js .reveal.is-visible .signature-visual .sig-operator,
html.js .reveal.is-visible .signature-visual .sig-actions {
  transition-delay: 360ms;
}

html.js .reveal.is-visible .signature-visual .sig-proxy,
html.js .reveal.is-visible .signature-visual .sig-triage,
html.js .reveal.is-visible .signature-visual .sig-system {
  transition-delay: 460ms;
}

html.js .signature-visual .sig-core circle:nth-child(2),
html.js .signature-visual .sig-aperture path:first-of-type,
html.js .signature-visual .sig-noise circle {
  animation-play-state: paused;
}

html.js .reveal.is-visible .signature-visual .sig-core circle:nth-child(2),
html.js .reveal.is-visible .signature-visual .sig-aperture path:first-of-type,
html.js .reveal.is-visible .signature-visual .sig-noise circle {
  animation-play-state: running;
}

html.js .reveal .signature-visual .sig-packet {
  opacity: 0;
  transition: opacity 360ms ease-out;
}

html.js .reveal.is-visible .signature-visual .sig-packet {
  opacity: 1;
  transition-delay: 860ms;
}

html.js .reveal.is-visible .signature-visual .scan-band,
html.js .reveal.is-visible .signature-visual .sig-green {
  animation: drawLine 1400ms ease-out 420ms forwards;
}

.sig-label {
  fill: var(--paper-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.core-label {
  fill: var(--paper);
  font-size: 15px;
}

.mission-canvas {
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 154, 150, 0.16), transparent 33%),
    radial-gradient(circle at 80% 18%, rgba(244, 244, 228, 0.07), transparent 26%);
}

.mission-frame {
  fill: rgba(244, 244, 228, 0.03);
  stroke: rgba(244, 244, 228, 0.28);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.mission-grid {
  fill: none;
  stroke: rgba(244, 244, 228, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.mission-route {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawLine 1800ms ease-out forwards, driftDash 18s linear 1900ms infinite;
  vector-effect: non-scaling-stroke;
}

.mission-route.route-b,
.mission-route.route-c {
  stroke: rgba(244, 244, 228, 0.62);
  animation-delay: 180ms, 2100ms;
}

.mission-route.proxy,
.mission-route.route-d {
  stroke: rgba(74, 154, 150, 0.9);
  stroke-dasharray: 8 12;
  stroke-dashoffset: 0;
  animation: driftDash 16s linear infinite;
}

.mission-canvas .app-node rect,
.mission-canvas .app-node path,
.mission-canvas .app-node circle,
.mission-canvas .command-core circle,
.mission-canvas .command-core path,
.mission-canvas .endpoint-stack rect,
.mission-canvas .endpoint-stack path,
.mission-canvas .endpoint-stack circle,
.mission-canvas .operator-gate rect,
.mission-canvas .operator-gate path,
.mission-canvas .proxy-layer path,
.mission-canvas .proxy-layer circle,
.mission-canvas .triage-panel rect,
.mission-canvas .triage-panel path,
.mission-canvas .intel-core path,
.mission-canvas .intel-core circle,
.mission-canvas .domain-stack rect,
.mission-canvas .action-marker rect,
.mission-canvas .action-marker path,
.mission-canvas .network-marker circle,
.mission-canvas .network-marker path,
.mission-canvas .handoff-marker path {
  fill: rgba(0, 0, 0, 0.18);
  stroke: var(--paper);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.mission-canvas .command-core circle:first-child,
.mission-canvas .intel-core path:first-child,
.mission-canvas .operator-gate rect,
.mission-canvas .domain-stack rect {
  fill: rgba(74, 154, 150, 0.13);
  stroke: var(--green);
}

.mission-canvas .endpoint-stack circle,
.mission-canvas .proxy-layer circle,
.mission-canvas .network-marker circle,
.mission-canvas .intel-core circle,
.mission-canvas .noise-field circle {
  fill: var(--green);
  stroke: var(--paper);
}

.mission-canvas .core-pulse {
  fill: none;
  stroke: var(--green);
  stroke-dasharray: 12 12;
  animation: driftDash 12s linear infinite, coreBreathe 3.4s ease-in-out infinite;
}

.mission-canvas .ai-bars {
  stroke: var(--green);
  stroke-width: 2;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: drawLine 1400ms ease-out 500ms forwards;
}

.mission-canvas .noise-field circle {
  opacity: 0.28;
  animation: noiseResolve 4s ease-in-out infinite;
}

.mission-canvas .noise-field circle:nth-child(2n) {
  animation-delay: 420ms;
}

.mission-canvas .noise-field circle:nth-child(3n) {
  animation-delay: 840ms;
}

.mission-canvas .packet,
.packet {
  fill: var(--green);
  stroke: var(--paper);
  stroke-width: 1;
  filter: drop-shadow(0 0 9px rgba(74, 154, 150, 0.9));
}

.mission-canvas .packet-two,
.mission-canvas .packet-four {
  fill: var(--paper);
  stroke: var(--green);
}

.mission-canvas .iris-label {
  fill: var(--paper-dim);
}

.svg-muted,
.iris-frame {
  fill: transparent;
  stroke: rgba(244, 244, 228, 0.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.svg-solid,
.iris-grid {
  fill: none;
  stroke: rgba(244, 244, 228, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.svg-line,
.iris-route,
.iris-orbit {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.svg-line.primary,
.iris-route {
  stroke: var(--green);
  stroke-width: 1.8;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawLine 1800ms ease-out 180ms forwards;
}

.svg-line.secondary,
.iris-orbit {
  stroke: rgba(244, 244, 228, 0.58);
  stroke-width: 1.1;
  stroke-dasharray: 8 12;
  animation: driftDash 22s linear infinite;
}

.brand-core path,
.iris-core circle,
.iris-core path,
.iris-lock path,
.iris-endpoints path,
.iris-endpoints circle,
.iris-operator path,
.iris-proxy path {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.brand-core path:first-child,
.iris-core circle:first-child {
  stroke: var(--green);
  fill: rgba(74, 154, 150, 0.08);
}

.brand-domains circle,
.iris-packet {
  fill: var(--green);
}

.iris-label {
  fill: var(--paper-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.center-label {
  text-anchor: middle;
}

.iris-core .iris-label {
  fill: var(--paper);
  font-size: 15px;
}

.iris-packet {
  stroke: var(--paper);
  stroke-width: 1;
  filter: drop-shadow(0 0 8px rgba(74, 154, 150, 0.8));
}

.packet-two {
  fill: var(--paper);
  stroke: var(--green);
  opacity: 0.78;
}

.page-band {
  scroll-margin-top: 118px;
  margin: 0 var(--outside) var(--outside);
  padding: 80px var(--gutter);
  border-radius: var(--corner);
}

.page-band.paper {
  background: var(--paper);
  color: var(--ink);
}

.page-band.green {
  background: var(--green);
  color: var(--ink);
}

.iris-page .page-band.paper,
.iris-page .page-band.black {
  background: transparent;
  color: var(--paper);
  border-top: 1px dashed var(--green);
  border-bottom: 1px dashed var(--green);
  border-radius: 0;
}

.iris-page .page-band.paper {
  background: var(--paper);
  color: var(--black);
  border: 0;
  border-radius: var(--corner);
}

.iris-page .page-band.green {
  background: var(--green);
  color: var(--black);
}

.iris-page .section-label,
.iris-page .stat-label,
.iris-page .eyebrow {
  color: var(--green);
}

.iris-page .page-band.green .section-label,
.iris-page .page-band.green .stat-label,
.iris-page .page-band.green .eyebrow {
  color: var(--black);
}

.iris-page .page-band.paper .section-label,
.iris-page .page-band.paper .stat-label,
.iris-page .page-band.paper .eyebrow {
  color: var(--green-dark);
}

.page-band.black {
  background: transparent;
  color: var(--paper);
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  border-radius: 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  max-width: 1040px;
  font-family: var(--sans);
  font-size: 5.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.iris-page .section-head h2,
.iris-page .brief-card h2 {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.section-head p {
  font-size: 1.25rem;
  line-height: 1.25;
}

.rule {
  height: 1px;
  margin-bottom: 18px;
  background: currentColor;
  opacity: 0.38;
  transform-origin: left;
}

.grid-3,
.grid-4,
.split,
.visual-flow,
.goal-board {
  display: grid;
  gap: 24px;
}

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

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

.split {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: stretch;
}

.visual-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.goal-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.calvexa-goals {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goal-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 18px 0 0;
  border-top: 1px solid currentColor;
  overflow: hidden;
}

.goal-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.35;
}

.goal-card > span {
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.black .goal-card > span {
  color: var(--green);
}

.goal-card svg {
  width: 100%;
  margin: 34px 0 22px;
  overflow: visible;
}

.goal-card path,
.goal-card rect,
.goal-card circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.goal-card circle {
  fill: var(--green);
}

.goal-card .goal-motion {
  stroke: var(--green-dark);
  stroke-width: 2;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: drawLine 1700ms ease-out 220ms forwards;
}

.goal-card strong {
  display: block;
  max-width: 260px;
  padding-bottom: 28px;
  font-family: var(--sans);
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.motive-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.calvexa-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  margin-top: 42px;
}

.asset-frame {
  min-height: 360px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--green);
  background: var(--black-soft);
}

.asset-frame::before,
.asset-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asset-frame::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62)),
    linear-gradient(90deg, rgba(74, 154, 150, 0.2), transparent 46%);
}

.asset-frame::after {
  z-index: 2;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: var(--green);
  opacity: 0.84;
  transform: scaleX(0);
  transform-origin: left center;
  animation: barIn 1200ms ease-out 220ms forwards;
}

.asset-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: grayscale(1) saturate(0.45) contrast(1.15);
}

.asset-frame figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 30px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

html.js .reveal .asset-frame::after {
  animation: none;
}

html.js .reveal.is-visible .asset-frame::after {
  animation: barIn 1200ms ease-out 220ms forwards;
}

.motive-strip div {
  min-height: 190px;
}

.motive-strip div {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid currentColor;
}

.motive-strip div::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.35;
}

.motive-strip span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--green);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
}

.motive-strip strong {
  display: block;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 2.35rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.flow-card {
  min-height: 300px;
  position: relative;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  overflow: hidden;
}

.flow-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.32;
}

.flow-card > span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.black .flow-card > span {
  color: var(--green);
}

.flow-card strong {
  display: block;
  margin-top: 18px;
  color: transparent;
  -webkit-text-stroke: 1px currentColor;
  font-family: var(--sans);
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.8;
  opacity: 0.44;
}

.flow-card svg {
  width: 100%;
  margin-top: 20px;
  overflow: visible;
}

.flow-card path,
.flow-card circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

.flow-card circle {
  fill: currentColor;
}

.flow-card .flow-line {
  stroke: var(--green-dark);
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 1600ms ease-out 260ms forwards;
}

html.js .reveal .goal-card .goal-motion,
html.js .reveal.goal-card .goal-motion,
html.js .reveal .flow-card .flow-line,
html.js .reveal.flow-card .flow-line {
  animation: none;
}

html.js .reveal.is-visible .goal-card .goal-motion,
html.js .reveal.goal-card.is-visible .goal-motion {
  animation: drawLine 1700ms ease-out 220ms forwards;
}

html.js .reveal.is-visible .flow-card .flow-line,
html.js .reveal.flow-card.is-visible .flow-line {
  animation: drawLine 1600ms ease-out 260ms forwards;
}

.module,
.metric,
.interface {
  min-height: 196px;
  padding: 0 0 22px;
  border: 0;
  border-top: 1px solid currentColor;
  position: relative;
}

.module::after,
.metric::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px dashed currentColor;
  opacity: 0.35;
}

.module-index {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--green);
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
}

.module h3,
.interface h3 {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.module p,
.interface p,
.metric p {
  margin-top: 18px;
  font-size: 1.04rem;
  line-height: 1.32;
}

.module-glyph {
  height: 78px;
  margin-top: 42px;
  position: relative;
}

.module-glyph span {
  display: block;
}

.route-glyph span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  animation: barIn 900ms ease forwards;
}

.route-glyph span:nth-child(1) {
  top: 12px;
}

.route-glyph span:nth-child(2) {
  top: 36px;
  width: 72%;
  animation-delay: 110ms;
}

.route-glyph span:nth-child(3) {
  top: 60px;
  width: 42%;
  background: var(--green);
  animation-delay: 220ms;
}

.bar-glyph {
  display: flex;
  align-items: end;
  gap: 10px;
}

.bar-glyph span {
  flex: 1;
  border: 1px solid currentColor;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: growUp 900ms ease forwards;
}

.bar-glyph span:nth-child(1) {
  height: 38%;
}

.bar-glyph span:nth-child(2) {
  height: 72%;
  animation-delay: 100ms;
}

.bar-glyph span:nth-child(3) {
  height: 100%;
  background: var(--green);
  animation-delay: 200ms;
}

.gate-glyph {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: center;
}

.gate-glyph span {
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.gate-glyph span::after {
  content: "";
  position: absolute;
  inset: 50% -15px auto auto;
  width: 15px;
  height: 1px;
  background: currentColor;
}

.gate-glyph span:last-child {
  background: var(--green);
}

.gate-glyph span:last-child::after {
  display: none;
}

html.js .reveal .route-glyph span,
html.js .reveal .bar-glyph span,
html.js .reveal .bar::before {
  animation: none;
}

html.js .reveal.is-visible .route-glyph span {
  animation: barIn 900ms ease forwards;
}

html.js .reveal.is-visible .route-glyph span:nth-child(2) {
  animation-delay: 110ms;
}

html.js .reveal.is-visible .route-glyph span:nth-child(3) {
  animation-delay: 220ms;
}

html.js .reveal.is-visible .bar-glyph span {
  animation: growUp 900ms ease forwards;
}

html.js .reveal.is-visible .bar-glyph span:nth-child(2) {
  animation-delay: 100ms;
}

html.js .reveal.is-visible .bar-glyph span:nth-child(3) {
  animation-delay: 200ms;
}

html.js .reveal.is-visible .bar::before {
  animation: barIn 1100ms ease forwards;
}

.metric strong {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.mini-readout {
  height: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin-top: 28px;
}

.mini-readout span {
  display: block;
  min-height: 18px;
  border: 1px solid currentColor;
  transform: scaleY(0);
  transform-origin: bottom center;
  animation: growUp 900ms ease forwards;
}

.mini-readout span:nth-child(1) {
  height: 38%;
}

.mini-readout span:nth-child(2) {
  height: 68%;
  animation-delay: 100ms;
}

.mini-readout span:nth-child(3) {
  height: 100%;
  background: var(--green-dark);
  animation-delay: 200ms;
}

.black .mini-readout span:nth-child(3) {
  background: var(--green);
}

html.js .reveal .mini-readout span {
  animation: none;
}

html.js .reveal.is-visible .mini-readout span {
  animation: growUp 900ms ease forwards;
}

html.js .reveal.is-visible .mini-readout span:nth-child(2) {
  animation-delay: 100ms;
}

html.js .reveal.is-visible .mini-readout span:nth-child(3) {
  animation-delay: 200ms;
}

.technical-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technical-table th,
.technical-table td {
  padding: 16px 0;
  border-bottom: 1px dashed currentColor;
  text-align: left;
  vertical-align: top;
}

.screen {
  background: var(--black-soft);
  color: var(--paper);
  border: 1px solid var(--green);
  padding: 0;
  overflow: hidden;
}

.screen-top {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 16px;
  border-bottom: 1px solid var(--green);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.screen-body {
  padding: 20px;
}

.terminal-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 244, 228, 0.12);
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.25;
}

.status {
  color: var(--green);
}

.bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bar {
  height: 22px;
  border: 1px solid currentColor;
  position: relative;
}

.bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: currentColor;
  opacity: 0.84;
  transform-origin: left;
  transform: scaleX(0);
  animation: barIn 1100ms ease forwards;
}

.coverage {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 54px;
  align-items: start;
}

.brief-card {
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

.brief-card::before {
  display: none;
}

.brief-card h2 {
  max-width: 880px;
  font-family: var(--sans);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.93;
  text-wrap: balance;
}

.brief-card p {
  max-width: 680px;
  margin-top: 30px;
  font-size: 1.18rem;
  line-height: 1.28;
}

.brief-signal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-signal span {
  padding-top: 12px;
  border-top: 1px solid currentColor;
}

.brief-signal span::before {
  display: none;
}

.contact-rows {
  border-top: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-row {
  min-height: 78px;
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  gap: 20px;
  align-items: center;
  padding: 0;
  border-bottom: 1px dashed currentColor;
  overflow: visible;
}

.contact-row::before {
  display: none;
}

.contact-row span:last-child {
  text-align: right;
  font-family: var(--sans);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 36px var(--gutter) 48px;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: translateZ(0);
  transition: opacity var(--duration) ease-out, transform var(--duration) ease-out;
}

html.js .reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateZ(0);
}

.wipe {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path var(--duration) ease-out;
}

html.js .wipe {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

html.js .wipe.is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@keyframes markTrace {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes driftDash {
  to {
    stroke-dashoffset: -240;
  }
}

@keyframes scanFloat {
  0%, 100% {
    transform: translate3d(-150px, 0, 0);
    opacity: 0;
  }
  18%, 82% {
    opacity: 0.58;
  }
  50% {
    transform: translate3d(150px, 0, 0);
    opacity: 0.76;
  }
}

@keyframes barIn {
  to {
    transform: scaleX(1);
  }
}

@keyframes growUp {
  to {
    transform: scaleY(1);
  }
}

@keyframes coreBreathe {
  0%, 100% {
    opacity: 0.34;
  }
  50% {
    opacity: 0.92;
  }
}

@keyframes noiseResolve {
  0%, 100% {
    opacity: 0.18;
    transform: translateY(0);
  }
  50% {
    opacity: 0.82;
    transform: translateY(-4px);
  }
}

@media (min-width: 1024px) {
  html.js .reveal {
    transform: translate3d(0, 30px, 0);
  }
}

@media (min-width: 1366px) {
  .iris-page h1 {
    font-size: 6.75rem;
  }
}

@media (max-width: 1180px) {
  :root {
    --gutter: 48px;
  }

  .banner {
    margin-right: 32px;
    margin-left: 32px;
  }

  h1 {
    font-size: 5.4rem;
  }

  .iris-page h1 {
    max-width: 880px;
    font-size: 5.4rem;
  }

  .section-head h2,
  .brief-card h2 {
    font-size: 4rem;
  }

  .hero {
    gap: 44px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-art {
    min-height: 440px;
  }

  .section-head,
  .split,
  .contact-panel,
  .visual-flow,
  .goal-board,
  .calvexa-goals,
  .motive-strip,
  .asset-grid {
    grid-template-columns: 1fr;
  }

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

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

  html {
    scroll-padding-top: 156px;
  }

  .banner {
    min-height: auto;
    margin: 0 var(--outside) 30px;
    padding: 18px 20px;
    grid-template-columns: auto 1fr;
    align-items: start;
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .banner a {
    grid-column: 2;
    width: max-content;
  }

  .nav {
    height: auto;
    min-height: 86px;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav::after {
    display: none;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow-x: visible;
    padding-bottom: 4px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .asset-hero {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
    padding-top: 38px;
  }

  .asset-backdrop video,
  .asset-backdrop img {
    opacity: 0.3;
  }

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

  .iris-page h1 {
    max-width: 100%;
    font-size: 3.45rem;
    line-height: 0.96;
  }

  .hero-lede {
    font-size: 1.1rem;
    overflow-wrap: anywhere;
  }

  .grid-3,
  .grid-4,
  .brief-signal,
  .visual-flow,
  .goal-board,
  .calvexa-goals,
  .motive-strip,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
  }

  .hero-facts span {
    font-size: 0.62rem;
  }

  .hero-facts strong {
    font-size: 0.72rem;
  }

  .asset-frame {
    min-height: 260px;
  }

  .hero-art {
    min-height: 320px;
  }

  .field-card {
    width: min(100%, 420px);
  }

  .iris-label {
    font-size: 13px;
  }

  .page-band {
    scroll-margin-top: 156px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section-head h2,
  .brief-card h2 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .section-head p,
  .brief-card p {
    font-size: 1rem;
  }

  .module,
  .metric {
    min-height: 160px;
  }

  .metric strong {
    font-size: 3.6rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .contact-row span:last-child {
    text-align: left;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .sig-packet,
  .packet,
  .iris-packet {
    display: none;
  }

  .asset-backdrop video {
    display: none;
  }

  .sig-route,
  .signature-visual .scan-band,
  .signature-visual .sig-green,
  .squircle-shell,
  .squircle-scan,
  .squircle-ray,
  .squircle-ring,
  .goal-card .goal-motion,
  .flow-card .flow-line,
  .identity-cut,
  .asset-frame::after,
  .mini-readout span {
    animation: none !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

html.motion-reduced .reveal,
html.motion-reduced .wipe {
  clip-path: inset(0 0 0 0) !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

html.motion-reduced .sig-packet,
html.motion-reduced .packet,
html.motion-reduced .iris-packet {
  display: none;
}

html.motion-reduced .asset-backdrop video {
  display: none;
}

html.motion-reduced .sig-route,
html.motion-reduced .signature-visual .scan-band,
html.motion-reduced .signature-visual .sig-green,
html.motion-reduced .squircle-shell,
html.motion-reduced .squircle-scan,
html.motion-reduced .squircle-ray,
html.motion-reduced .squircle-ring,
html.motion-reduced .goal-card .goal-motion,
html.motion-reduced .flow-card .flow-line,
html.motion-reduced .identity-cut,
html.motion-reduced .asset-frame::after,
html.motion-reduced .mini-readout span {
  animation: none !important;
  transform: none !important;
  stroke-dashoffset: 0 !important;
}
