/* Combined stylesheet — eliminates @import waterfall for production */

/* === css\base.css === */
/* Shared Base */
/* Source: styles.css lines 1-166 */

:root {
  color-scheme: dark;
  --bg: #000000;
  --text: #ffffff;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --focus: #ffffff;
  --green: #00ff38;
  --cursor-plus-white: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='31' viewBox='0 0 31 31'%3E%3Cpath d='M15.5 5V26M5 15.5H26' stroke='white' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E") 15 15, crosshair;
  --cursor-plus-green: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='31' viewBox='0 0 31 31'%3E%3Cpath d='M15.5 5V26M5 15.5H26' stroke='%2300ff38' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E") 15 15, crosshair;
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  cursor: var(--cursor-plus-white);
}

body.is-lightbox-open {
  overflow: hidden;
}

body.zana-register-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: var(--cursor-plus-green);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  isolation: isolate;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.site-header,
.site-header a {
  pointer-events: auto;
}

.brand {
  flex: 0 0 auto;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.7vw, 38px);
  font-size: clamp(11px, 1.25vw, 15px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.nav-links a,
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 4px;
  outline: none;
  transition: color 160ms ease, opacity 160ms ease;
  touch-action: manipulation;
}

.nav-links a:hover,
.brand:hover {
  color: var(--green);
}

.nav-links a:focus-visible,
.brand:focus-visible {
  outline: 1px solid var(--focus);
  outline-offset: 6px;
}

main {
  width: 100%;
}

.binary-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

#binary-logo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: var(--cursor-plus-green);
  z-index: 0;
}


.eyebrow,
.section-tag {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(12px, 1.2vw, 14px);
  line-height: 1.4;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 10vw, 132px);
  line-height: 0.92;
  font-weight: 700;
}

.blank-page {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 120px clamp(18px, 5vw, 72px) clamp(42px, 7vw, 90px);
}

.blank-page h1 {
  margin: 0;
  font-size: clamp(42px, 11vw, 150px);
  line-height: 0.95;
  font-weight: 700;
}

/* === css\pages\about.css === */
/* About Page */
/* Source: styles.css lines 167-596 */

.about-page {
  min-height: 100svh;
  padding: calc(var(--site-header-height, 90px) + clamp(22px, 3.5vw, 42px)) clamp(18px, 5vw, 72px) clamp(40px, 6vw, 72px);
  background:
    linear-gradient(180deg, rgba(0, 255, 56, 0.035), rgba(0, 0, 0, 0) 360px),
    #000;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  align-items: start;
  gap: clamp(22px, 3vw, 42px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.about-intro {
  position: sticky;
  top: calc(var(--site-header-height, 90px) + 28px);
  min-width: 0;
  padding: clamp(18px, 2.2vw, 30px);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.54);
}

.about-intro .eyebrow {
  margin-bottom: 12px;
}

.about-title-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.about-side-heading {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 clamp(16px, 2vw, 22px);
  border: 1px solid var(--line);
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.about-side-heading h3 {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1;
  font-weight: 500;
}

.about-ticker {
  overflow: hidden;
  border: 1px solid var(--green);
  background: var(--green);
  color: #000;
}

.about-ticker-track {
  display: flex;
  width: max-content;
  animation: aboutTickerMove 18s linear infinite;
}

.about-ticker-track span {
  flex: 0 0 auto;
  padding: 8px 22px;
  color: #000;
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes aboutTickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.about-intro-copy {
  margin-top: clamp(22px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(11px, 0.86vw, 13px);
  line-height: 1.62;
}

.about-intro-copy p {
  max-width: 58ch;
  margin: 0;
}

.about-intro-copy p + p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.people-section {
  min-width: 0;
}

.about-services-section {
  margin: 0 0 clamp(20px, 2.6vw, 34px);
}

.about-logos-section {
  grid-column: 1 / 2;
  min-width: 0;
  margin-top: clamp(18px, 2.4vw, 30px);
}

.about-services-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #000;
}

.about-service-item {
  position: relative;
  min-width: 0;
  min-height: clamp(72px, 6.2vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: clamp(12px, 1.4vw, 18px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
  outline: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.about-service-item::after {
  content: "+";
  position: absolute;
  right: 16px;
  bottom: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 18px;
  line-height: 1;
  transition: color 160ms ease, transform 160ms ease;
}

.about-service-item span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.about-service-item h4 {
  max-width: 18ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(11px, 0.82vw, 13px);
  font-weight: 400;
  line-height: 1.24;
}

.about-service-item:hover,
.about-service-item:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: #000;
}

.about-service-item:hover h4,
.about-service-item:focus-visible h4,
.about-service-item:hover span,
.about-service-item:focus-visible span,
.about-service-item:hover::after,
.about-service-item:focus-visible::after {
  color: #000;
}

.about-service-item:hover::after,
.about-service-item:focus-visible::after {
  transform: rotate(45deg);
}

.about-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(104px, 11vw, 148px), 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: #000;
}

.about-logo-card {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: clamp(62px, 5vw, 82px);
  margin: 0;
  padding: clamp(9px, 1vw, 14px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
}

.about-logo-card img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(72%, 124px);
  max-height: clamp(30px, 2.8vw, 46px);
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.people-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.people-heading .eyebrow {
  margin: 0;
}

.people-heading h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(26px, 3.1vw, 46px);
  line-height: 1;
  font-weight: 500;
}

.people-group + .people-group {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.people-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 clamp(16px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.people-group-header-split {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-right: 0;
}

.people-group-label {
  display: flex;
  grid-column: span 2;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 42px;
  padding: 0 clamp(16px, 2.4vw, 28px);
}

.people-group-label-hr {
  grid-column: 4;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.people-group-header span,
.people-group-label span {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.people-group-header h3,
.people-group-label h3 {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1;
  font-weight: 500;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  justify-content: start;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

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

.people-card {
  position: relative;
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-rows: auto clamp(64px, 5.2vw, 78px);
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
  outline: none;
}

.people-card-empty {
  min-height: 100%;
  pointer-events: none;
  border-right: 0;
}

.people-card-hr {
  border-left: 1px solid var(--line);
}

.people-card:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: -1px;
}

.people-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.people-photo-empty {
  display: grid;
  place-items: center;
}

.people-photo-empty span {
  color: rgba(0, 255, 56, 0.7);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.people-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}

.people-copy {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(34px, auto) 18px;
  align-content: start;
  padding-top: 12px;
}

.person-role {
  overflow: hidden;
  margin: 0;
  color: var(--green);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.people-copy h4 {
  display: -webkit-box;
  overflow: hidden;
  align-self: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.12;
  font-weight: 500;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.person-description {
  position: absolute;
  inset: 12px;
  display: flex;
  align-items: flex-end;
  margin: 0;
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.55;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.94));
  border: 1px solid rgba(0, 255, 56, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.people-card:hover .person-description,
.people-card:focus-visible .person-description,
.people-card:focus-within .person-description {
  opacity: 0;
  pointer-events: none;
}

/* === css\pages\lab.css === */
/* Lab Page */
/* Source: styles.css lines 597-828 */

.lab-page {
  min-height: 100svh;
  overflow: hidden;
  background: #000;
}

.lab-workspace {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #000;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

#lab-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.lab-workspace.is-panning #lab-canvas {
  cursor: grabbing;
}

.lab-workspace.is-moving-cluster #lab-canvas {
  cursor: move;
}

.lab-info {
  position: fixed;
  top: calc(var(--site-header-height, 90px) + 14px);
  left: clamp(18px, 5vw, 72px);
  z-index: 36;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 0 30px rgba(0, 255, 56, 0.08);
  backdrop-filter: blur(14px);
  user-select: none;
}

.lab-info.is-dragging {
  border-color: rgba(0, 255, 56, 0.76);
  box-shadow: 0 0 34px rgba(0, 255, 56, 0.16);
}

.lab-info-toggle {
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: rgba(0, 255, 56, 0.065);
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 11px;
  line-height: 1;
  text-align: left;
  cursor: move;
}

.lab-info-toggle:hover,
.lab-info-toggle:focus-visible {
  color: var(--green);
  outline: 1px solid rgba(0, 255, 56, 0.85);
  outline-offset: -1px;
}

.lab-info-copy {
  display: none;
  margin: 0;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.7;
}

.lab-info.is-open .lab-info-copy {
  display: block;
}

.lab-search {
  position: fixed;
  top: calc(var(--site-header-height, 90px) + 58px);
  right: clamp(18px, 5vw, 72px);
  z-index: 35;
  width: min(340px, calc(100vw - 36px));
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 0 32px rgba(0, 255, 56, 0.08);
  backdrop-filter: blur(14px);
  user-select: none;
}

.lab-search.is-dragging {
  border-color: rgba(0, 255, 56, 0.76);
  box-shadow: 0 0 34px rgba(0, 255, 56, 0.16);
}

.lab-search-handle {
  display: block;
  width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 255, 56, 0.065);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 11px;
  line-height: 1;
  text-align: left;
  cursor: move;
}

.lab-search-handle:focus-visible,
.lab-search-input:focus {
  outline: 1px solid rgba(0, 255, 56, 0.85);
  outline-offset: -1px;
}

.lab-search-input {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.lab-search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lab-search-results {
  max-height: min(320px, 45svh);
  overflow: auto;
  padding: 6px;
}

.lab-search-option {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  text-align: left;
  cursor: var(--cursor-plus-green);
}

.lab-search-option:hover,
.lab-search-option:focus-visible {
  border-color: rgba(0, 255, 56, 0.58);
  background: rgba(0, 255, 56, 0.09);
  outline: none;
}

.lab-search-name {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lab-search-meta {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lab-reset {
  position: fixed;
  top: calc(var(--site-header-height, 90px) + 14px);
  right: clamp(18px, 5vw, 72px);
  z-index: 20;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.74);
  color: #fff;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: var(--cursor-plus-green);
  backdrop-filter: blur(10px);
}

.lab-reset:hover,
.lab-reset:focus-visible {
  border-color: rgba(0, 255, 56, 0.88);
  color: var(--green);
  outline: none;
}

.lab-readout {
  position: fixed;
  left: clamp(18px, 5vw, 72px);
  bottom: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
}

/* === css\pages\rhino2revit.css === */
/* Rhino2Revit Page */
/* Source: styles.css lines 829-1717 */

.r2r-page {
  min-height: 100svh;
  background: #000;
}

.r2r-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(96px, 12vw, 140px) clamp(16px, 4vw, 58px) clamp(42px, 6vw, 84px);
  overflow: hidden;
}

#r2r-binary-logo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
}

.r2r-intro {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
}

.r2r-wordmark {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content max-content;
  align-items: center;
  justify-content: center;
  gap: var(--r2r-gap);
  width: min(100%, 1320px);
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 9.6vw, 156px);
  font-weight: 300;
  line-height: 0.86;
  white-space: nowrap;
  --r2r-gap: clamp(2px, 0.8vw, 14px);
  --r2r-swap-gap: calc(var(--r2r-gap) + var(--r2r-gap));
  --r2r-swap-extra: 0.72ch;
  --r2r-swap-distance: calc(6ch + var(--r2r-swap-gap) + var(--r2r-swap-extra));
  --r2r-swap-distance-negative: calc(-6ch - var(--r2r-swap-gap) - var(--r2r-swap-extra));
  animation: r2rWordmarkLift 1700ms cubic-bezier(0.16, 1, 0.3, 1) 1100ms both;
}

.r2r-part,
.r2r-two {
  display: inline-block;
  will-change: transform, opacity;
}

.r2r-two {
  color: #fff;
  font-weight: 500;
  animation: r2rPulse 2800ms ease 260ms both;
}

.r2r-rhino {
  animation: r2rRhinoSequence 2800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.r2r-revit {
  animation: r2rRevitSequence 2800ms cubic-bezier(0.16, 1, 0.3, 1) 260ms both;
}

.r2r-claim {
  position: absolute;
  top: calc(50% + clamp(72px, 10vh, 128px));
  left: clamp(16px, 4vw, 58px);
  right: clamp(16px, 4vw, 58px);
  display: grid;
  justify-items: center;
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.r2r-headline,
.r2r-subheader {
  opacity: 0;
  transform: translateY(18px);
  animation: r2rClaimReveal 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r2r-headline {
  display: flex;
  justify-content: center;
  gap: 0.62ch;
  width: auto;
  max-width: max-content;
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 26px);
  font-weight: 300;
  line-height: 1.3;
  animation: r2rClaimReveal 400ms cubic-bezier(0.16, 1, 0.3, 1) 1100ms both;
}

.r2r-type-segment {
  display: inline-block;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 1px solid var(--green);
  animation: r2rTypeLine var(--type-duration, 900ms) steps(var(--type-steps), end) both,
    r2rTypeCursor var(--cursor-duration, 1060ms) step-end both;
}

.r2r-type-one {
  --type-steps: 11;
  --type-duration: 622ms;
  --cursor-duration: 742ms;
  animation-delay: 1220ms, 1220ms;
}

.r2r-type-two {
  --type-steps: 13;
  --type-duration: 735ms;
  --cursor-duration: 855ms;
  animation-delay: 1842ms, 1842ms;
}

.r2r-type-three {
  --type-steps: 22;
  --type-duration: 1243ms;
  --cursor-duration: 1363ms;
  animation-delay: 2577ms, 2577ms;
}

.r2r-subheader {
  width: min(100%, 76ch);
  margin: clamp(14px, 2vw, 24px) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 1.55vw, 20px);
  font-weight: 300;
  line-height: 1.65;
  animation-delay: 4080ms;
}

.r2r-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(16px, 2.4vw, 28px);
  opacity: 0;
  transform: translateY(12px);
  animation: r2rClaimReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 4080ms both;
}

.r2r-hero-actions a {
  display: inline-grid;
  place-items: center;
  min-height: clamp(42px, 4.2vw, 54px);
  min-width: clamp(124px, 10vw, 156px);
  padding: 0 clamp(18px, 2vw, 28px);
  color: #fff;
  font-size: clamp(12px, 1.55vw, 20px);
  font-weight: 300;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.32);
}

.r2r-hero-actions a:hover,
.r2r-hero-actions a:focus-visible {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.r2r-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 5vh, 54px);
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 38px;
  height: 34px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  animation: r2rScrollCueReveal 900ms ease 4080ms both,
    r2rScrollCueFloat 1800ms ease-in-out 4980ms infinite;
}

.r2r-scroll-cue span {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(45deg);
  opacity: 0.78;
}

.r2r-scroll-cue span + span {
  margin-top: -14px;
  opacity: 0.5;
}

.r2r-scroll-cue:hover span,
.r2r-scroll-cue:focus-visible span {
  opacity: 1;
}

.r2r-scroll-cue:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: 8px;
}

.r2r-tutorials {
  width: min(100% - clamp(32px, 10vw, 150px), 1240px);
  margin: 0 auto clamp(40px, 4.5vw, 66px);
  padding-top: clamp(44px, 7vw, 94px);
  scroll-margin-top: calc(var(--site-header-height, 90px) + 44px);
}

.r2r-tutorials-header {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 18px clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  background: #000;
}

.r2r-tutorials-header .section-tag {
  margin: 0;
}

.r2r-tutorials-header h2 {
  justify-self: end;
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.55;
  text-align: right;
}

.r2r-tutorial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  padding: clamp(18px, 2.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.r2r-tutorial-tile {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(0, auto) 1fr;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: #000;
}

.r2r-tutorial-tile p {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 clamp(14px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, 0.92vw, 13px);
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.r2r-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  background: #000;
  overflow: hidden;
  cursor: var(--cursor-plus-green);
}

.r2r-video-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) 19px 14px / 2px 18px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)) 26px 14px / 2px 18px no-repeat,
    rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
  transition: border-color 160ms ease, opacity 160ms ease, background-color 160ms ease;
  pointer-events: none;
}

.r2r-video-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.82);
  transform: translate(-35%, -50%);
  transition: opacity 160ms ease, border-left-color 160ms ease;
  pointer-events: none;
}

.r2r-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
}

.r2r-tutorial-tile.is-ready video {
  opacity: 1;
}

.r2r-tutorial-tile.is-playing .r2r-video-frame::before {
  opacity: 0;
}

.r2r-tutorial-tile.is-playing .r2r-video-frame::after {
  opacity: 0;
}

.r2r-video-frame:hover::before,
.r2r-video-frame:focus-within::before {
  border-color: var(--green);
}

.r2r-video-frame:hover::after,
.r2r-video-frame:focus-within::after {
  border-left-color: var(--green);
}

.r2r-video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto auto minmax(72px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.r2r-tutorial-tile.is-playing .r2r-video-controls {
  opacity: 1;
  transform: translateY(0);
}

.r2r-video-controls button {
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 11px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.56);
  cursor: var(--cursor-plus-green);
}

.r2r-video-controls button:hover,
.r2r-video-controls button:focus-visible {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.r2r-video-controls input {
  width: 100%;
  accent-color: var(--green);
}

.r2r-tutorial-copy {
  min-height: clamp(150px, 14vw, 230px);
  padding: clamp(18px, 2vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.r2r-tutorial-copy h3 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 300;
  line-height: 1.16;
}

.r2r-tutorial-copy p {
  max-width: 34ch;
  margin: clamp(22px, 3vw, 46px) 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.65;
  border: 0;
}

.r2r-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  width: min(100% - clamp(32px, 8vw, 116px), 1280px);
  margin: 0 auto clamp(42px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-copy {
  padding: clamp(28px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-copy h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}

.r2r-copy p:not(.section-tag) {
  max-width: 58ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 1.15vw, 15px);
  line-height: 1.75;
}

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

.r2r-grid article {
  min-height: clamp(220px, 30vw, 420px);
  padding: clamp(20px, 3.5vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-grid article:last-child {
  border-right: 0;
}

.r2r-grid span {
  display: block;
  color: var(--green);
  font-size: 13px;
}

.r2r-grid h3 {
  margin: clamp(54px, 10vw, 150px) 0 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 300;
  line-height: 1.1;
}

.r2r-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.r2r-licenses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - clamp(32px, 8vw, 116px), 1280px);
  margin: 0 auto clamp(42px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-licenses article {
  min-height: 220px;
  padding: clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-licenses article:last-child {
  border-right: 0;
}

.r2r-licenses p {
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.r2r-licenses h3 {
  margin: 66px 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.1;
}

.r2r-licenses span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.65;
}

.r2r-commercial {
  width: min(100% - clamp(32px, 10vw, 150px), 1240px);
  margin: clamp(52px, 7vw, 104px) auto clamp(32px, 4.5vw, 63px);
  scroll-margin-top: calc(var(--site-header-height, 90px) + clamp(44px, 6vw, 82px));
}

.r2r-commercial-header {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-commercial-header > div,
.r2r-commercial-header > p {
  padding: clamp(28px, 5vw, 72px);
}

.r2r-commercial-header > div {
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-commercial-header h2 {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 300;
  line-height: 1.55;
}

.r2r-commercial-header > p {
  align-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 1.15vw, 15px);
  line-height: 1.75;
}

.r2r-compatibility,
.r2r-billing-row,
.r2r-pricing {
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-compatibility {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-compatibility span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 1vw, 13px);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-compatibility span:last-child {
  color: var(--green);
  border-right: 0;
}

.r2r-billing-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 3vw, 34px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-billing-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.r2r-billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-billing-toggle button {
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  background: #000;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  cursor: var(--cursor-plus-green);
}

.r2r-billing-toggle button:last-child {
  border-right: 0;
}

.r2r-billing-toggle button.is-active {
  color: #000;
  background: var(--green);
}

.r2r-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-plan {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 2.4vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.r2r-plan:last-child {
  border-right: 0;
}

.r2r-plan.is-featured {
  box-shadow: inset 0 0 0 1px var(--green);
}

.r2r-plan-kicker {
  margin: 0;
  color: var(--green);
  font-size: 13px;
}

.r2r-plan h3 {
  min-height: 48px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.75vw, 25px);
  font-weight: 300;
  line-height: 1.08;
}

.r2r-price {
  margin-top: 20px;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 300;
  line-height: 0.95;
}

.r2r-price-note {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.r2r-plan ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.r2r-plan li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.42;
}

.r2r-plan li::before {
  content: "+";
  margin-right: 9px;
  color: var(--green);
}

.r2r-plan a {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  width: fit-content;
  margin-top: 22px;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.r2r-plan a:hover,
.r2r-plan a:focus-visible {
  color: var(--green);
  border-color: var(--green);
  outline: none;
}

.r2r-disclaimer {
  width: min(100% - clamp(32px, 12vw, 180px), 1040px);
  margin: clamp(18px, 3vw, 36px) auto 0;
  padding: 0 0 clamp(24px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(9px, 0.82vw, 11px);
  font-weight: 300;
  line-height: 1.65;
  text-align: center;
}

@keyframes r2rRhinoSequence {
  0% {
    color: var(--green);
    opacity: 0;
    transform: translateX(42vw);
  }

  30% {
    color: var(--green);
    opacity: 1;
    transform: translateX(var(--r2r-swap-distance));
  }

  100% {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes r2rRevitSequence {
  0% {
    color: var(--green);
    opacity: 0;
    transform: translateX(-42vw);
  }

  30% {
    color: var(--green);
    opacity: 1;
    transform: translateX(var(--r2r-swap-distance-negative));
  }

  100% {
    color: #fff;
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes r2rPulse {
  0% {
    color: #fff;
    opacity: 0;
    transform: scale(0.82);
  }

  18% {
    color: #fff;
    opacity: 1;
    transform: scale(1.08);
  }

  30% {
    color: #fff;
    opacity: 1;
    transform: scale(0.94);
  }

  100% {
    color: var(--green);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes r2rWordmarkLift {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(clamp(-74px, -7.2vh, -48px)) scale(0.94);
  }
}

@keyframes r2rClaimReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes r2rTypeLine {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes r2rTypeCursor {
  from,
  82% {
    border-right-color: var(--green);
  }

  100% {
    border-right-color: transparent;
  }
}

@keyframes r2rBinaryFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.62;
  }
}

@keyframes r2rScrollCueReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes r2rScrollCueFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* === css\pages\zanafilla.css === */
/* Zanafilla Page */
/* Source: styles.css lines 1718-3373 */

.zanafilla-page {
  --zanafilla-page-pad: clamp(16px, 4vw, 58px);
  --zana-concept-progress: 0;
  --zana-capacity-opacity: 0;
  --zana-pressure-opacity: 0;
  --zana-beginning-opacity: 0;
  --zana-media-opacity: 0;
  --zana-disclaimer-opacity: 0;
  min-height: 100svh;
  padding: 0 var(--zanafilla-page-pad) clamp(42px, 6vw, 84px);
  background: #000;
}

.zana-landing {
  --zana-map-zoom: 1.21;
  --zana-map-shift-x: 0px;
  --zana-map-shift-y: 0px;
  --zana-concept-progress: 0;
  --zana-capacity-opacity: 0;
  --zana-pressure-opacity: 0;
  --zana-beginning-opacity: 0;
  --zana-media-opacity: 0;
  --zana-scroll-cue-opacity: 1;
  --zana-wordmark-align-x: 0px;
  --zana-wordmark-align-y: 0px;
  --zana-wordmark-size: clamp(50px, min(8.8vw, 13vh), 146px);
  --zana-support-x: clamp(18px, 7vw, 108px);
  --zana-support-y: calc(50% + 54px);
  position: relative;
  z-index: 0;
  min-height: 100svh;
  display: grid;
  place-items: center;
  margin-right: calc(var(--zanafilla-page-pad) * -1);
  margin-left: calc(var(--zanafilla-page-pad) * -1);
  overflow: hidden;
  background: #000;
}

.zana-landing.is-field-pinned {
  position: relative;
}

.zana-tirana-stage {
  position: fixed;
  inset: var(--site-header-height, 90px) 0 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: calc(100svh - var(--site-header-height, 90px));
  object-fit: cover;
  object-position: center center;
  transform: translate3d(var(--zana-map-shift-x), var(--zana-map-shift-y), 0) scale(var(--zana-map-zoom));
  transform-origin: center center;
  pointer-events: none;
}

.zana-tirana-edges {
  position: fixed;
  inset: var(--site-header-height, 90px) 0 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: calc(100svh - var(--site-header-height, 90px));
  object-fit: cover;
  object-position: center center;
  transform: translate3d(var(--zana-map-shift-x), var(--zana-map-shift-y), 0) scale(var(--zana-map-zoom));
  transform-origin: center center;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.76;
}

.zana-hero-shade {
  position: fixed;
  inset: var(--site-header-height, 90px) 0 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 48%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.46));
}

.zana-analysis-overlay {
  position: fixed;
  inset: var(--site-header-height, 90px) 0 0;
  z-index: 3;
  display: block;
  width: 100%;
  height: calc(100svh - var(--site-header-height, 90px));
  pointer-events: none;
  transform: translate3d(var(--zana-map-shift-x), var(--zana-map-shift-y), 0) scale(var(--zana-map-zoom));
  transform-origin: center center;
  mix-blend-mode: screen;
}

.zana-svg-layer {
  transition: opacity 120ms linear;
  will-change: opacity;
}

.zana-svg-capacity {
  opacity: calc(var(--zana-capacity-opacity, 0) * 1.08);
}

.zana-capacity-fog-base {
  display: none;
}

.zana-capacity-fog-base ellipse {
  fill: url(#zana-capacity-fog-green);
}

.zana-capacity-fog-base ellipse:nth-child(2n) {
  fill: rgba(0, 255, 56, 0.12);
}

.zana-capacity-fog-base ellipse:nth-child(5) {
  fill: rgba(255, 255, 255, 0.07);
}

.zana-capacity-emissions {
  transform-box: fill-box;
  transform-origin: center;
  filter: blur(9px);
  opacity: 0.86;
  animation: zanaCapacityRadiance 18000ms ease-in-out infinite;
}

.zana-capacity-emissions circle {
  fill: url(#zana-capacity-heat-mid);
}

.zana-capacity-emissions circle:nth-child(3n) {
  fill: url(#zana-capacity-heat-high);
}

.zana-capacity-emissions circle:nth-child(5n) {
  fill: url(#zana-capacity-heat-low);
}

.zana-capacity-pulse-light {
  opacity: 0.38;
  mix-blend-mode: screen;
  transform-origin: center;
}

.zana-capacity-luma {
  filter: blur(28px);
  opacity: 0;
  animation: zanaCapacityLuma 22000ms ease-in-out infinite;
}

.zana-capacity-luma ellipse {
  fill: url(#zana-capacity-fog-white);
}

.zana-capacity-luma ellipse:nth-child(2) {
  fill: rgba(0, 255, 56, 0.18);
}

.zana-capacity-luma ellipse:nth-child(3) {
  fill: rgba(255, 255, 255, 0.12);
}

.zana-capacity-luma-b {
  animation-delay: -8000ms;
}

.zana-capacity-luma-c {
  animation-delay: -16000ms;
}

.zana-capacity-samples circle {
  display: block;
  fill: rgba(0, 255, 56, 0.68);
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.zana-capacity-samples circle:nth-child(3n) {
  display: block;
  fill: rgba(255, 255, 255, 0.56);
  stroke: rgba(0, 255, 56, 0.42);
}

.zana-capacity-samples circle:nth-child(5n) {
  display: block;
  fill: rgba(0, 255, 56, 0.46);
  stroke: rgba(255, 255, 255, 0.18);
}

.zana-svg-pressure {
  opacity: calc(var(--zana-pressure-opacity, 0) * 0.96);
}

.zana-svg-pressure circle {
  fill: rgba(0, 255, 56, 0.18);
}

.zana-svg-pressure circle.pressure-medium {
  fill: rgba(0, 255, 56, 0.28);
}

.zana-svg-pressure circle.pressure-major {
  fill: rgba(0, 255, 56, 0.38);
}

.zana-svg-pressure circle:nth-child(4n) {
  fill: rgba(255, 255, 255, 0.12);
}

.zana-pressure-lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zana-pressure-cores circle {
  fill: rgba(255, 255, 255, 0.72);
}

.zana-svg-beginning {
  opacity: calc(var(--zana-beginning-opacity, 0) * 0.96);
  pointer-events: visiblePainted;
}

.zana-site-marker {
  cursor: var(--cursor-plus-green);
  pointer-events: visiblePainted;
}

.zana-site-marker circle {
  fill: none;
  stroke: rgba(0, 255, 56, 0.86);
  stroke-width: 5;
  transition: fill 140ms ease, stroke 140ms ease, opacity 140ms ease;
}

.zana-site-marker path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 4;
  stroke-linecap: square;
  transition: stroke 140ms ease;
}

.zana-site-marker:hover circle,
.zana-site-marker:focus-visible circle {
  fill: rgba(0, 255, 56, 0.18);
  stroke: rgba(0, 255, 56, 1);
}

.zana-site-marker:hover path,
.zana-site-marker:focus-visible path {
  stroke: rgba(0, 255, 56, 1);
}

.zana-wordmark {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: min(100%, 1180px);
  padding: 0 clamp(18px, 7vw, 108px);
  color: #fff;
  font-size: var(--zana-wordmark-size);
  font-weight: 300;
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.72);
  transform: translate3d(var(--zana-wordmark-align-x), var(--zana-wordmark-align-y), 0);
  opacity: var(--zana-hero-ui-opacity, 1);
}

.zana-z {
  color: #fff;
  font-size: 0.62em;
}

.zana-rest {
  display: inline-block;
  width: 0;
  max-width: max-content;
  overflow: hidden;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.74);
  font-size: 0.62em;
  animation: zanaType 1300ms steps(11, end) 0ms both,
    zanaCursor 1500ms step-end 0ms both;
}

.zana-io {
  color: #fff;
  transition: color 520ms ease, text-shadow 680ms ease;
}

.zana-landing.is-fuse-complete .zana-io {
  color: var(--green);
  text-shadow: 0 0 11px rgba(0, 255, 56, 0.7),
    0 0 26px rgba(0, 255, 56, 0.32);
  animation: zanaIoIgnite 920ms ease both;
}

.zana-target-i {
  position: relative;
  display: inline-block;
  line-height: inherit;
}

.zana-i-anchor {
  position: absolute;
  left: 50%;
  top: 0.14em;
  width: 4px;
  height: 4px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.zana-support {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: min(520px, calc(100% - 36px));
  transform: translate3d(var(--zana-support-x), var(--zana-support-y), 0);
  opacity: var(--zana-hero-ui-opacity, 1);
}

.zana-origin {
  display: grid;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, min(0.92vw, 1.55vh), 14px);
  font-weight: 300;
  line-height: 1.55;
  text-align: left;
  opacity: 0;
  transform: translateY(14px);
  animation: zanaReveal 720ms ease 820ms both;
}

.zana-origin p {
  width: min(100%, 58ch);
  margin: 0;
}

.zana-origin p:first-child {
  color: rgba(255, 255, 255, 0.86);
}

.zana-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(14px);
  animation: zanaReveal 720ms ease 1020ms both;
}

.zana-hero-actions .access-link {
  min-height: clamp(42px, 4.2vw, 54px);
  min-width: clamp(172px, 14vw, 220px);
  padding: 0 clamp(18px, 2vw, 28px);
  margin-top: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  border-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  font-size: clamp(12px, 1.55vw, 20px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  cursor: var(--cursor-plus-green);
}

.zana-watch-link {
  display: inline-grid;
  place-items: center;
  align-items: center;
  min-height: clamp(42px, 4.2vw, 54px);
  min-width: clamp(132px, 10.5vw, 168px);
  padding: 0 clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: clamp(12px, 1.55vw, 20px);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: 0;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(8px);
}

.zana-watch-link:hover,
.zana-watch-link:focus-visible {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.zana-hero-actions .access-link:hover,
.zana-hero-actions .access-link:focus-visible {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

@media (max-width: 1100px), (orientation: portrait) {
  .zana-support {
    width: min(480px, calc(100% - 36px));
  }

  .zana-origin {
    font-size: clamp(10px, min(1.18vw, 1.45vh), 13px);
    line-height: 1.45;
  }

  .zana-hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .zana-hero-actions .access-link,
  .zana-watch-link {
    min-height: clamp(38px, 4.4vw, 48px);
    padding-inline: clamp(14px, 1.8vw, 22px);
    font-size: clamp(12px, 1.5vw, 18px);
  }
}

.zana-scroll-cue {
  position: fixed;
  left: 50%;
  bottom: clamp(28px, 5vh, 54px);
  z-index: 6;
  display: grid;
  justify-items: center;
  gap: 2px;
  width: 34px;
  height: 32px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: auto;
}

.zana-landing.is-fuse-complete .zana-scroll-cue {
  animation: zanaRevealCue 800ms ease both,
    r2rScrollCueFloat 1800ms ease-in-out 800ms infinite;
  opacity: var(--zana-scroll-cue-opacity, 1);
}

.zanafilla-page.is-zana-media-step .zana-scroll-cue,
.zanafilla-page.is-zana-final-step .zana-scroll-cue {
  visibility: hidden;
  opacity: 0 !important;
  pointer-events: none;
  animation: none;
}

.zana-scroll-cue span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  opacity: 0.72;
}

.zana-scroll-cue span + span {
  margin-top: -13px;
  opacity: 0.42;
}

.zana-map-afterglow {
  position: relative;
  z-index: 6;
  min-height: 400svh;
  margin: 0 calc(var(--zanafilla-page-pad) * -1);
  background: transparent;
}

.zana-disclaimer {
  width: min(100%, 1040px);
  margin: clamp(6px, 1.2vh, 14px) auto 0;
  padding: clamp(10px, 1.8vh, 18px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
  opacity: var(--zana-disclaimer-opacity, 0);
  pointer-events: none;
}
.zana-concept-copy {
  position: fixed;
  left: clamp(24px, 4vw, 72px);
  top: calc(var(--site-header-height, 90px) + clamp(34px, 7vh, 86px));
  z-index: 7;
  width: min(430px, calc(100vw - 48px));
  max-height: calc(100svh - var(--site-header-height, 90px) - clamp(62px, 11vh, 120px));
  padding: clamp(14px, 1.8vw, 22px) 0 clamp(14px, 1.8vw, 22px) clamp(16px, 2vw, 24px);
  border-left: 1px solid rgba(0, 255, 56, 0.42);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18) 62%, rgba(0, 0, 0, 0));
  backdrop-filter: blur(2px);
  overflow: hidden;
  pointer-events: none;
  opacity: var(--zana-capacity-opacity, 0);
  transform: translate3d(0, calc((1 - var(--zana-capacity-opacity, 0)) * 20px), 0);
  transition: opacity 80ms linear;
}

.zana-concept-copy-pressure {
  opacity: var(--zana-pressure-opacity, 0);
  transform: translate3d(0, calc((1 - var(--zana-pressure-opacity, 0)) * 20px), 0);
}

.zana-concept-copy-beginning {
  opacity: var(--zana-beginning-opacity, 0);
  transform: translate3d(0, calc((1 - var(--zana-beginning-opacity, 0)) * 20px), 0);
}

.zana-concept-kicker {
  margin: 0 0 clamp(12px, 1.6vh, 18px);
  color: var(--green);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.zana-concept-section-kicker {
  margin-top: clamp(22px, 3vh, 34px);
  color: var(--green);
}

.zana-concept-copy h1 {
  max-width: 24ch;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, min(2.85vw, 4.4vh), 42px);
  font-weight: 300;
  line-height: 1.12;
}

.zana-concept-copy h2 {
  max-width: 26ch;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, min(2vw, 3vh), 30px);
  font-weight: 400;
  line-height: 1.25;
}

.zana-concept-body {
  width: min(390px, 100%);
  margin: clamp(16px, 2.3vh, 26px) 0 0;
}

.zana-concept-body-intro {
  margin-top: clamp(14px, 2.2vh, 22px);
}

.zana-concept-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, min(0.92vw, 1.48vh), 13.5px);
  font-weight: 300;
  line-height: 1.68;
}

.zana-concept-body p + p {
  margin-top: clamp(12px, 1.8vh, 18px);
}

.zana-concept-body p:first-child {
  color: rgba(255, 255, 255, 0.88);
}

.zana-concept-body p:last-child:not(:first-child) {
  color: rgba(255, 255, 255, 0.88);
}

.zana-media-layer {
  position: fixed;
  inset: calc(var(--site-header-height, 90px) + clamp(22px, 4vh, 42px)) clamp(18px, 4vw, 64px) clamp(24px, 5vh, 54px);
  z-index: 7;
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(520px, 1.48fr);
  gap: clamp(18px, 4vw, 58px);
  align-items: center;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: var(--zana-media-opacity, 0);
  transform: translate3d(0, calc((1 - var(--zana-media-opacity, 0)) * 20px), 0);
  transition: opacity 80ms linear;
  pointer-events: none;
  scrollbar-width: thin;
}

.zanafilla-page.is-zana-media-step .zana-media-layer {
  pointer-events: auto;
}

.zana-media-copy {
  align-self: start;
  max-width: 430px;
  padding: clamp(14px, 1.8vw, 22px) 0 clamp(14px, 1.8vw, 22px) clamp(16px, 2vw, 24px);
  border-left: 1px solid rgba(0, 255, 56, 0.42);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16) 70%, rgba(0, 0, 0, 0));
}

.zana-media-copy h1 {
  max-width: 19ch;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, min(2.7vw, 4vh), 40px);
  font-weight: 300;
  line-height: 1.12;
}

.zana-media-type {
  width: min(100%, 40ch);
  margin: clamp(16px, 2.2vh, 24px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, min(0.92vw, 1.48vh), 13.5px);
  font-weight: 300;
  line-height: 1.68;
}

.zana-media-stage {
  display: grid;
  gap: clamp(16px, 2.4vh, 26px);
  min-width: 0;
  min-height: 0;
  padding-bottom: clamp(18px, 4vh, 48px);
}

.zana-main-media {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.56);
}

.zana-main-media > p,
.zana-usecase-tile > p {
  min-height: 42px;
  margin: 0;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  line-height: 42px;
}

.zana-main-media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(56svh, 620px);
  overflow: hidden;
  background: #000;
}

.zana-main-media-frame::before {
  content: "main media";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: clamp(12px, 1vw, 15px);
}

.zana-main-media-frame video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}

.zana-usecase-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.zana-usecase-tile {
  min-width: 0;
  display: block;
}

.zana-usecase-tile .r2r-video-frame {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.zana-usecase-tile .r2r-video-frame video {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

@media (max-width: 1180px), (orientation: portrait) {
  .zana-media-layer {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 16px;
  }

  .zana-media-copy {
    max-width: min(100%, 680px);
  }

  .zana-usecase-strip {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .zana-usecase-tile {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .zana-media-layer {
    inset: calc(var(--site-header-height, 132px) + 14px) 14px 18px;
  }

  .zana-media-copy {
    padding-left: 14px;
  }

  .zana-media-copy h1 {
    font-size: clamp(22px, 7vw, 32px);
  }

  .zana-media-type {
    font-size: 11px;
    line-height: 1.5;
  }

  .zana-usecase-strip {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }
}

.zana-register-modal[hidden] {
  display: none;
}

.zana-register-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
}

.zana-register-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.zana-register-panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid rgba(0, 255, 56, 0.48);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 42px rgba(0, 255, 56, 0.12);
}

.zana-register-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  background: transparent;
  cursor: pointer;
}

.zana-register-close:hover,
.zana-register-close:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.zana-register-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  text-transform: uppercase;
}

.zana-register-panel h2 {
  margin: 0 44px 24px 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.zana-register-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.zana-register-field span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
}

.zana-register-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.04);
}

.zana-register-field input:focus {
  border-color: var(--green);
  outline: none;
}

.zana-register-submit {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: 48px;
  margin-top: 22px;
  border: 1px solid var(--green);
  color: #000;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--green);
  cursor: pointer;
}

.zana-register-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.zana-register-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.zana-memory {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  min-height: 500svh;
  margin: 0 calc(var(--zanafilla-page-pad) * -1);
  padding: calc(var(--site-header-height, 90px) + 58px) var(--zanafilla-page-pad) 12svh;
  overflow: clip;
  background:
    radial-gradient(circle at 22% 28%, rgba(0, 255, 56, 0.08), transparent 28%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.055), transparent 30%),
    #000;
}

.zana-memory::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 9%, #000 88%, transparent);
  pointer-events: none;
}

.zana-memory-visual {
  position: sticky;
  top: calc(var(--site-header-height, 90px) + 26px);
  z-index: 1;
  height: calc(100svh - var(--site-header-height, 90px) - 52px);
  min-height: 560px;
  overflow: hidden;
}

.memory-grid {
  position: absolute;
  inset: 9% 0 8%;
  background:
    linear-gradient(rgba(0, 255, 56, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 56, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.16;
}

.memory-field {
  position: absolute;
  inset: 3% -5% 0;
  width: 110%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(0, 255, 56, 0.08));
}

.memory-line {
  fill: none;
  stroke: rgba(0, 255, 56, 0.18);
  stroke-width: 1.6;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 5 16;
  animation: memoryFlow 9s linear infinite;
}

.memory-line-b,
.memory-line-d {
  stroke: rgba(255, 255, 255, 0.13);
  animation-duration: 13s;
}

.memory-cells polygon {
  fill: rgba(0, 255, 56, 0.025);
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: fill 240ms ease, stroke 240ms ease, opacity 240ms ease;
}

.memory-nodes circle {
  fill: var(--green);
  opacity: 0.62;
  transform-origin: center;
  animation: memoryPulse 2200ms ease-in-out infinite;
}

.memory-nodes circle:nth-child(2n) {
  animation-delay: 450ms;
}

.memory-readout {
  position: absolute;
  left: 0;
  bottom: clamp(18px, 5vh, 54px);
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(10px, 1vw, 12px);
}

.memory-readout span:first-child {
  color: var(--green);
}

.zana-memory-panels {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18svh;
  padding: 12svh 0;
}

.zana-memory-panel {
  display: grid;
  align-content: center;
  min-height: 72svh;
  opacity: 0.42;
  transition: opacity 260ms ease, transform 260ms ease;
}

.zana-memory-panel.is-active {
  opacity: 1;
  transform: translateX(-10px);
}

.zana-memory-panel h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.94;
}

.zana-memory-panel p:not(.eyebrow) {
  max-width: 48ch;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 300;
  line-height: 1.75;
}

.memory-tags,
.memory-axis,
.memory-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.memory-tags button,
.memory-axis button,
.memory-metrics span {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.48);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 11px;
}

.memory-tags button,
.memory-axis button {
  cursor: var(--cursor-plus-green);
}

.memory-tags button:hover,
.memory-tags button:focus-visible,
.memory-axis button:hover,
.memory-axis button:focus-visible {
  border-color: var(--green);
  color: var(--green);
  outline: none;
}

.zana-memory[data-memory-lens="pixels"] .memory-cells polygon,
.zana-memory[data-memory-lens="capacity"] .memory-cells polygon {
  fill: rgba(0, 255, 56, 0.11);
  stroke: rgba(0, 255, 56, 0.62);
}

.zana-memory[data-memory-lens="centrality"] .memory-nodes circle:nth-child(-n+5),
.zana-memory[data-memory-lens="possible"] .memory-nodes circle {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(0, 255, 56, 0.8));
}

.zana-memory[data-memory-lens="adjacency"] .memory-line,
.zana-memory[data-memory-lens="regimes"] .memory-line,
.zana-memory[data-memory-lens="possible"] .memory-line {
  stroke: rgba(0, 255, 56, 0.46);
  stroke-width: 2.2;
  stroke-dasharray: 1 0;
}

.zana-memory[data-memory-lens="weights"] .memory-line-c,
.zana-memory[data-memory-lens="capacity"] .memory-line-c {
  stroke: rgba(255, 255, 255, 0.42);
}

@keyframes memoryFlow {
  to {
    stroke-dashoffset: -84;
  }
}

@keyframes memoryPulse {
  0%,
  100% {
    opacity: 0.38;
    r: 3;
  }

  50% {
    opacity: 1;
    r: 6;
  }
}

.zana-memory.zana-field {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 330svh;
  margin: 0 calc(var(--zanafilla-page-pad) * -1);
  padding: 0;
  overflow: visible;
  background: transparent;
}

.zana-memory.zana-field::before {
  display: none;
}

.zana-field-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: transparent;
}

.zana-field-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.18) 16%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 50% 42%, transparent 0 25%, rgba(0, 0, 0, 0.46) 74%);
  opacity: var(--zana-field-layer-opacity, 0);
  pointer-events: none;
}

#zana-field-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  opacity: calc(var(--zana-field-layer-opacity, 0) * 0.76);
  cursor: var(--cursor-plus-green);
}

.zana-field-fade {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.92) 0, rgba(0, 0, 0, 0.02) 22%, rgba(0, 0, 0, 0.05) 70%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.6));
  opacity: var(--zana-field-layer-opacity, 0);
  pointer-events: none;
}

.zana-field-console {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(22px, 6vh, 70px);
  z-index: 6;
  display: grid;
  gap: 16px;
  width: min(430px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(14px);
  opacity: var(--zana-field-controls-opacity, 0);
  transform: translateY(calc((1 - var(--zana-field-controls-opacity, 0)) * 18px));
  pointer-events: none;
}

.zana-memory.is-field-ready .zana-field-console {
  pointer-events: auto;
}

.zana-field-console p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
}

.zana-field-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.zana-field-modes button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: var(--cursor-plus-green);
}

.zana-field-modes button:hover,
.zana-field-modes button:focus-visible,
.zana-field-modes button.is-active {
  border-color: rgba(0, 255, 56, 0.82);
  color: var(--green);
  outline: none;
}

.zana-field-weights {
  display: grid;
  gap: 10px;
}

.zana-field-weights label {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.zana-field-weights input {
  width: 100%;
  accent-color: var(--green);
  cursor: var(--cursor-plus-green);
}

.zana-field-readout {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.zana-field-readout span:first-child {
  color: var(--green);
}

.zana-field-story {
  position: relative;
  z-index: 7;
  display: grid;
  gap: 54svh;
  width: min(100% - 36px, 760px);
  margin: -68svh 0 0 clamp(18px, 6vw, 92px);
  padding: 0 0 80svh;
  opacity: var(--zana-field-story-opacity, 0);
  transform: translateY(calc((1 - var(--zana-field-story-opacity, 0)) * 28px));
  pointer-events: none;
}

.zana-field-story .zana-memory-panel {
  display: block;
  min-height: 86svh;
  opacity: 0.28;
  transform: none;
  transition: opacity 260ms ease, filter 260ms ease;
}

.zana-field-story .zana-memory-panel.is-active {
  opacity: 1;
  transform: none;
}

.zana-field-story .zana-memory-panel h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 8.8vw, 138px);
  font-weight: 300;
  line-height: 0.88;
}

.zana-field-story .zana-memory-panel p:not(.eyebrow) {
  max-width: 42ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(15px, 1.28vw, 19px);
  font-weight: 300;
  line-height: 1.72;
}

.zana-field-story .access-link {
  pointer-events: auto;
}

.zana-memory[data-memory-mode="begin"] #zana-field-canvas {
  filter: drop-shadow(0 0 12px rgba(0, 255, 56, 0.22));
}

@keyframes zanaType {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes zanaCursor {
  from,
  84% {
    border-right-color: rgba(255, 255, 255, 0.74);
  }

  100% {
    border-right-color: transparent;
  }
}

@keyframes zanaIoIgnite {
  0% {
    color: #fff;
    text-shadow: none;
  }

  28% {
    color: rgba(236, 255, 240, 0.98);
    text-shadow: 0 0 16px rgba(255, 255, 255, 0.72),
      0 0 28px rgba(0, 255, 56, 0.24);
  }

  62% {
    color: var(--green);
    text-shadow: 0 0 15px rgba(0, 255, 56, 0.78),
      0 0 34px rgba(0, 255, 56, 0.38);
  }

  100% {
    color: var(--green);
    text-shadow: 0 0 10px rgba(0, 255, 56, 0.6),
      0 0 22px rgba(0, 255, 56, 0.24);
  }
}

@keyframes zanaReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zanaRevealCue {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes zanaCapacityLuma {
  0%,
  100% {
    opacity: 0.08;
  }

  28% {
    opacity: 0.42;
  }

  52% {
    opacity: 0.3;
  }

  76% {
    opacity: 0.14;
  }
}

@keyframes zanaCapacityRadiance {
  0%,
  100% {
    opacity: 0.72;
  }

  42% {
    opacity: 0.94;
  }

  68% {
    opacity: 0.82;
  }
}

.zanafilla-hero {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  width: min(100%, 1280px);
  min-height: clamp(560px, 76vh, 780px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.zanafilla-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.zanafilla-copy h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 300;
  line-height: 0.96;
}

.zanafilla-lead {
  width: min(100%, 46ch);
  margin: 32px 0 0;
  color: #fff;
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 300;
  line-height: 1.38;
}

.zanafilla-text {
  width: min(100%, 58ch);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 300;
  line-height: 1.8;
}

.access-link {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 36px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.access-link:hover,
.access-link:focus-visible {
  color: var(--green);
  border-color: var(--green);
  outline: none;
}

.generative-demo {
  position: relative;
  display: grid;
  grid-template-rows: 54px minmax(0, 1fr) 54px;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}

.demo-header,
.demo-readout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(10px, 0.95vw, 12px);
  font-weight: 300;
}

.demo-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.demo-readout {
  border-top: 1px solid rgba(255, 255, 255, 0.72);
}

#urban-demo {
  display: block;
  width: 100%;
  height: 100%;
  cursor: var(--cursor-plus-green);
}

.demo-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  min-height: 0;
}

.demo-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  padding: clamp(16px, 2vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 1px solid rgba(255, 255, 255, 0.32);
}

.kpi-grid span {
  display: grid;
  gap: 10px;
  min-height: 74px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 300;
}

.kpi-grid strong {
  color: var(--green);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
}

.demo-controls label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 300;
}

.demo-controls input {
  width: 100%;
  accent-color: var(--green);
  cursor: var(--cursor-plus-green);
}

.zanafilla-dashboard,
.zanafilla-pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1280px);
  margin: 34px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}

.dashboard-module,
.pricing-card {
  min-height: 260px;
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.dashboard-module span,
.pricing-card p,
.pricing-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
}

.dashboard-module h2,
.pricing-card h2 {
  margin: 32px 0 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 300;
  line-height: 1.12;
}

.dashboard-module p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 300;
  line-height: 1.7;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card p,
.pricing-card h2 {
  margin-top: 0;
}

.pricing-card span {
  margin-top: auto;
}

.pricing-card a {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 24px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}

.pricing-card a:hover,
.pricing-card a:focus-visible {
  color: var(--green);
  border-color: var(--green);
  outline: none;
}

/* === css\pages\projects.css === */
/* Projects Page */
/* Source: styles.css lines 3374-3796 */

.projects-page {
  min-height: 100svh;
  padding: clamp(108px, 13vw, 150px) clamp(16px, 4vw, 58px) clamp(24px, 4vw, 58px);
  background: #000;
}

.project-detail {
  width: min(100%, 1280px);
  margin: 0 auto 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.projects-grid .project-detail {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.project-detail[hidden] {
  display: none;
}

.project-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  padding: 0 clamp(16px, 2.4vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.project-kicker {
  margin: 0;
  color: var(--muted);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
  line-height: 1;
}

.project-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: var(--cursor-plus-green);
  font: 300 30px/1 "JetBrains Mono", Consolas, monospace;
  transform: rotate(45deg);
  transition: color 160ms ease;
}

.project-close:hover,
.project-close:focus-visible {
  color: var(--green);
  outline: none;
}

.project-detail-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(360px, 54vh, 620px);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 54px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.project-title {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 7vw, 104px);
  font-weight: 300;
  line-height: 0.94;
}

.project-title.is-long {
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.02;
}

.project-meta {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
}

.project-description {
  width: min(100%, 42ch);
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 300;
  line-height: 1.7;
}

.project-media-grid {
  display: grid;
  grid-column: span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 100%;
  overflow: hidden;
}

.project-media-grid.media-count-0 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.project-media-grid.media-count-1 .media-slot:first-child {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.project-media-grid.media-count-2 .media-slot {
  grid-row: span 2;
}

.project-media-grid.media-count-3 .media-slot:first-child {
  grid-row: span 2;
}

.media-slot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
}

.media-slot.has-media {
  cursor: var(--cursor-plus-green);
}

.media-slot:nth-child(2n) {
  border-right: 0;
}

.media-slot:nth-last-child(-n+2) {
  border-bottom: 0;
}

.media-slot span {
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 300;
}

.media-slot img,
.media-slot video {
  display: block;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

.media-slot img {
  object-fit: cover;
}

.media-slot video {
  object-fit: contain;
  background: #000;
}

.media-audio-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.76);
  color: #fff;
  font: inherit;
  font-size: 11px;
  line-height: 1;
  cursor: var(--cursor-plus-green);
  backdrop-filter: blur(8px);
}

.media-audio-toggle:hover,
.media-audio-toggle:focus-visible,
.media-audio-toggle[aria-pressed="true"] {
  border-color: rgba(0, 255, 56, 0.9);
  color: var(--green);
  outline: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  background: rgba(0, 0, 0, 0.94);
}

.media-lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100svh;
  padding: clamp(18px, 4vw, 56px);
}

.lightbox-stage img,
.lightbox-stage video {
  display: block;
  max-width: 100%;
  max-height: 92svh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-stage .media-audio-toggle {
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 56px);
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: var(--cursor-plus-green);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-weight: 300;
  transition: color 160ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: var(--green);
  outline: none;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 501;
  width: 42px;
  height: 42px;
  font-size: 34px;
  line-height: 1;
  transform: rotate(45deg);
}

.lightbox-nav {
  height: 100svh;
  font-size: clamp(34px, 6vw, 72px);
}

.projects-page.has-active-project .projects-grid {
  --project-tile-height: clamp(58px, 8vh, 82px);
}

.project-tile.is-active {
  color: var(--green);
  border-color: rgba(0, 255, 56, 0.9);
}

.project-tile.is-active span {
  color: var(--green);
}

.project-tile.is-disabled {
  cursor: var(--cursor-plus-white);
}

.project-tile.is-disabled:hover,
.project-tile.is-disabled:focus {
  border-color: rgba(255, 255, 255, 0.72);
}

.project-tile.is-disabled:hover span,
.project-tile.is-disabled:focus span {
  color: #fff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  --project-tile-height: clamp(132px, 20vh, 190px);
  width: min(100%, 1280px);
  margin: 0 auto;
}

.project-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: var(--project-tile-height);
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
  color: #fff;
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--project-image, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 220ms ease, transform 420ms ease;
}

.project-tile span {
  position: relative;
  z-index: 1;
  transition: opacity 160ms ease, color 160ms ease;
}

.project-tile:hover,
.project-tile:focus,
.project-tile.is-preview {
  color: var(--green);
  border-color: rgba(0, 255, 56, 0.9);
  background: rgba(0, 255, 56, 0.025);
}

.project-tile:hover::before,
.project-tile:focus::before,
.project-tile.is-preview::before {
  opacity: 1;
  transform: scale(1);
}

.project-tile:hover span,
.project-tile:focus span,
.project-tile.is-preview span {
  color: #fff;
  opacity: 0.92;
}

.project-tile:focus-visible {
  position: relative;
  z-index: 1;
  outline: 1px solid var(--focus);
  outline-offset: -6px;
}

/* === css\responsive.css === */
/* Responsive Rules */
/* Source: styles.css lines 3797-4289 */

@media (max-width: 720px) {
  
  .about-intro {
    order: 1;
  }

  .people-section {
    order: 2;
  }

  .about-logos-section {
    order: 3;
    grid-column: 1 / -1;
  }
.site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .about-page {
    padding-top: calc(var(--site-header-height, 132px) + 42px);
  }

  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-intro {
    position: static;
  }

  .people-grid,
  .people-grid-partners,
  .about-services-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  }

  .people-group-header-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-group-label {
    grid-column: auto;
  }

  .people-group-label-hr {
    grid-column: auto;
  }

  .projects-page {
    padding-top: 150px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --project-tile-height: clamp(112px, 18vh, 160px);
  }

  .projects-page.has-active-project .projects-grid {
    --project-tile-height: clamp(54px, 8vh, 76px);
  }

  .project-detail-body {
    grid-template-columns: 1fr;
  }

  .project-media-grid {
    grid-column: auto;
  }

  .project-info {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .zanafilla-hero {
    grid-template-columns: 1fr;
  }

  .zana-memory {
    display: block;
    min-height: auto;
    padding-top: calc(var(--site-header-height, 132px) + 42px);
  }

  .zana-memory-visual {
    position: relative;
    top: auto;
    height: 58svh;
    min-height: 420px;
  }

  .zana-memory-panels {
    gap: 32px;
    padding: 24px 0 68px;
  }

  .zana-memory-panel {
    min-height: auto;
    opacity: 1;
    transform: none;
    padding: 42px 0;
  }

  .zana-memory-panel.is-active {
    transform: none;
  }

  .zana-memory-panel h2 {
    max-width: 12ch;
  }

  .zana-memory.zana-field {
    min-height: 320svh;
    margin-top: 0;
    padding-top: 0;
  }

  .zana-field-stage {
    height: 100svh;
    min-height: 620px;
  }

  .zana-field-console {
    right: 18px;
    bottom: 18px;
    width: calc(100vw - 36px);
    padding: 12px;
  }

  .zana-field-story {
    width: calc(100% - 36px);
    margin: -62svh 18px 0;
    gap: 42svh;
    padding-bottom: 72svh;
  }

  .zana-field-story .zana-memory-panel h2 {
    max-width: 10ch;
    font-size: clamp(44px, 16vw, 88px);
  }

  .zana-field-story .zana-memory-panel p:not(.eyebrow) {
    max-width: 34ch;
  }


  .zana-tirana-stage {
    object-position: center center;
  }

  .zana-wordmark {
    --zana-wordmark-size: clamp(34px, min(10.5vw, 8.4vh), 66px);
    padding: 0 22px;
  }

  .zana-support {
    width: calc(100% - 44px);
  }

  .zana-concept-copy {
    left: 22px;
    top: calc(var(--site-header-height, 132px) + 20px);
    width: calc(100vw - 44px);
    max-height: calc(100svh - var(--site-header-height, 132px) - 42px);
    padding-left: 16px;
  }

  .zana-concept-copy h1 {
    max-width: 22ch;
    font-size: clamp(22px, 6.4vw, 34px);
  }

  .zana-concept-copy h2 {
    max-width: 24ch;
    font-size: clamp(16px, 4.8vw, 24px);
  }

  .zana-concept-body {
    width: min(100%, 40ch);
  }

  .zana-concept-body p {
    font-size: clamp(10px, 2.65vw, 12px);
    line-height: 1.55;
  }

  .zana-hero-actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }

  .zanafilla-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .generative-demo {
    min-height: 520px;
  }

  .demo-workspace {
    grid-template-columns: 1fr;
  }

  .demo-controls {
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    border-left: 0;
  }

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

  .zanafilla-pricing {
    grid-template-columns: 1fr;
  }

  .r2r-wordmark {
    font-size: clamp(36px, 13vw, 92px);
  }

  .r2r-headline {
    max-width: min(100%, 54ch);
    flex-wrap: wrap;
    white-space: normal;
    font-size: clamp(13px, 2.6vw, 20px);
  }

  .r2r-tutorial-strip {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .r2r-tutorial-tile {
    scroll-snap-align: start;
  }

  .r2r-panel {
    grid-template-columns: 1fr;
  }

  .r2r-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-copy h2 {
    max-width: 16ch;
  }

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

  .r2r-grid article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-grid article:last-child {
    border-bottom: 0;
  }

  .r2r-grid h3 {
    margin-top: 58px;
  }

  .r2r-licenses {
    grid-template-columns: 1fr;
  }

  .r2r-licenses article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-licenses article:last-child {
    border-bottom: 0;
  }

  .r2r-licenses h3 {
    margin-top: 54px;
  }

  .r2r-commercial-header {
    grid-template-columns: 1fr;
  }

  .r2r-commercial-header > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-commercial-header h2 {
    max-width: 34ch;
  }

  .r2r-compatibility,
  .r2r-pricing {
    grid-template-columns: 1fr;
  }

  .r2r-compatibility span,
  .r2r-plan {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-plan:last-child {
    border-bottom: 0;
  }

  .r2r-billing-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    row-gap: 12px;
  }

  .about-page {
    padding-top: 172px;
  }

  .about-intro {
    padding: 18px;
  }

  .about-intro-copy {
    margin-top: 24px;
  }

  .people-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .people-grid,
  .people-grid-partners,
  .about-logos-grid {
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  }

  .about-services-menu {
    grid-template-columns: 1fr;
  }

  .people-card {
  position: relative;
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-rows: auto clamp(64px, 5.2vw, 78px);
  padding: 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
  outline: none;
}

  .projects-page {
    padding-top: 172px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    --project-tile-height: clamp(92px, 15vh, 140px);
  }

  .projects-page.has-active-project .projects-grid {
    --project-tile-height: clamp(50px, 8vh, 72px);
  }

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

  .media-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .zanafilla-page {
    padding-top: 0;
  }

  .demo-header,
  .demo-readout {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }

  .zanafilla-dashboard {
    grid-template-columns: 1fr;
  }

  .r2r-hero {
    padding-top: 172px;
  }

  .r2r-wordmark {
    font-size: clamp(28px, 12vw, 58px);
    --r2r-gap: 1px;
  }

  .r2r-claim {
    top: calc(50% + 58px);
  }

  .r2r-headline {
    font-size: clamp(12px, 3.5vw, 16px);
  }

  .r2r-tutorials-header {
    display: block;
  }

  .r2r-tutorials-header h2 {
    margin-top: 12px;
    text-align: left;
  }

  .r2r-tutorial-strip {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .r2r-hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .r2r-hero-actions a {
    min-height: clamp(40px, 11vw, 48px);
    min-width: clamp(108px, 32vw, 144px);
    padding-inline: 14px;
  }

  .r2r-billing-toggle {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .r2r-billing-toggle button {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  }

  .r2r-billing-toggle button:last-child {
    border-bottom: 0;
  }
}

/* === css\accessibility.css === */
/* Accessibility and Motion Preferences */
/* Source: styles.css lines 4290-4390 */

@media (prefers-reduced-motion: reduce) {
  .about-ticker-track {
    animation: none;
  }

  .r2r-rhino,
  .r2r-revit,
  .r2r-two,
  .r2r-wordmark,
  .r2r-headline,
  .r2r-subheader,
  .r2r-hero-actions,
  .r2r-type-segment,
  .r2r-scroll-cue {
    animation: none;
  }

  .r2r-headline,
  .r2r-subheader,
  .r2r-hero-actions {
    opacity: 1;
    transform: none;
  }

  .r2r-type-segment {
    width: auto;
    border-right: 0;
  }

  .r2r-scroll-cue {
    opacity: 1;
    transform: translateX(-50%);
  }

  .zana-z,
  .zana-rest,
  .zana-io,
  .zana-tirana-edges,
  .zana-origin,
  .zana-hero-actions,
  .zana-capacity-emissions,
  .zana-capacity-pulse-light,
  .zana-scroll-cue {
    animation: none;
  }

  .zana-rest {
    width: auto;
    border-right: 0;
  }

  .zana-origin,
  .zana-hero-actions,
  .zana-scroll-cue {
    opacity: 1;
    transform: none;
  }

  .zana-scroll-cue {
    transform: translateX(-50%);
  }

  .memory-line,
  .memory-nodes circle {
    animation: none;
  }
}
