/* 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: #0055A4;
  --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='%230055A4' 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);
  user-select: none;
  -webkit-user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  user-select: text;
  -webkit-user-select: text;
}

img,
video,
canvas,
svg {
  -webkit-user-drag: none;
}

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;
}

/* Hamburger button — hidden on desktop, shown on mobile via media query */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1000;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.2s;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.hamburger span::before { top: -7px; }
.hamburger span::after { top: 7px; }

/* X state when menu is open */
.hamburger.is-active span { background: transparent; }
.hamburger.is-active span::before { top: 0; transform: rotate(45deg); background: var(--green); }
.hamburger.is-active span::after { top: 0; transform: rotate(-45deg); background: var(--green); }

/* Close button inside nav overlay — hidden on desktop */
.nav-close {
  display: none;
  position: absolute;
  top: 14px;
  right: clamp(18px, 5vw, 72px);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
}

.nav-close::before,
.nav-close::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--green);
}

.nav-close::before { transform: rotate(45deg); }
.nav-close::after { transform: rotate(-45deg); }

.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;
}

/* ── Nav Dropdown ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 40px;
  padding: 0 4px;
  background: none;
  border: none;
  color: var(--text);
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  transition: color 160ms ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-dropdown-trigger:hover {
  color: var(--green);
}

.nav-dropdown-arrow {
  font-size: 0.7em;
  opacity: 0.5;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 0.8;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  font-size: clamp(11px, 1.15vw, 14px);
  font-weight: 500;
  color: var(--text);
  border-radius: 7px;
  transition: background 120ms ease, color 120ms ease;
  white-space: nowrap;
  min-height: unset;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--green);
}

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, 85, 164, 0.035), rgba(0, 0, 0, 0) 360px),
    #000;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

html:has(.about-page),
body:has(.about-page) {
  scrollbar-width: none;
}

html:has(.about-page)::-webkit-scrollbar,
body:has(.about-page)::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.about-page::before,
.about-page::after {
  content: "";
  position: fixed;
  right: 3px;
  z-index: 99;
  width: 6px;
  border-radius: 999px;
  pointer-events: none;
}

.about-page::before {
  top: var(--about-scrollbar-top, var(--site-header-height, 90px));
  bottom: 0;
  background: rgba(255, 255, 255, 0.08);
}

.about-page::after {
  top: calc(var(--about-scrollbar-top, var(--site-header-height, 90px)) + ((100svh - var(--about-scrollbar-top, var(--site-header-height, 90px)) - var(--about-scrollbar-thumb-size, 130px)) * var(--about-page-scroll-progress, 0)));
  height: var(--about-scrollbar-thumb-size, 130px);
  background: rgba(0, 85, 164, 0.72);
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  grid-template-areas: "main side";
  align-items: start;
  gap: clamp(22px, 3vw, 42px);
  width: min(100%, 1320px);
  margin-inline: auto;
}

.about-main-column,
.about-side-column {
  display: grid;
  align-content: start;
  gap: clamp(20px, 2.6vw, 34px);
  min-width: 0;
}

.about-main-column {
  grid-area: main;
}

.about-side-column {
  grid-area: side;
}

.about-intro {
  position: static;
  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 {
  min-width: 0;
}

.about-public-section {
  min-width: 0;
}

.about-public-ledger {
  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-public-entry {
  display: grid;
  grid-template-columns: minmax(58px, 0.2fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: clamp(9px, 1.1vw, 16px);
  min-width: 0;
  min-height: clamp(58px, 4.2vw, 74px);
  margin: 0;
  padding: clamp(10px, 1vw, 14px) clamp(11px, 1.3vw, 17px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
  transition: border-color 160ms ease, background 160ms ease;
}

.about-public-entry:hover,
.about-public-entry:focus-within {
  border-color: rgba(0, 85, 164, 0.72);
  background: rgba(0, 85, 164, 0.04);
}

.about-public-date {
  grid-row: 1 / -1;
  color: var(--green);
  font-size: clamp(9px, 0.68vw, 10.5px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-public-entry h4 {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(10.5px, 0.82vw, 13px);
  font-weight: 400;
  line-height: 1.26;
  overflow-wrap: anywhere;
}

.about-public-entry p {
  min-width: 0;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: clamp(9.5px, 0.7vw, 11px);
  font-weight: 300;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.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-services-contact {
  min-width: 0;
  padding: clamp(13px, 1.35vw, 18px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.58);
}

.about-services-contact h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(10.5px, 0.82vw, 13px);
  font-weight: 500;
  line-height: 1.24;
}

.about-services-contact > a,
.about-social-links a {
  color: var(--green);
}

.about-services-contact > a {
  display: inline-flex;
  margin-top: 8px;
  font-size: clamp(10.5px, 0.82vw, 13px);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.about-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.about-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0, 85, 164, 0.42);
  font-size: clamp(10px, 0.72vw, 11px);
  line-height: 1;
}

.about-social-links a:hover,
.about-social-links a:focus-visible {
  color: #000;
  background: var(--green);
  border-color: var(--green);
  outline: none;
}

.about-social-links svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.about-social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.about-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(68px, 6.2vw, 96px), 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(48px, 3.8vw, 62px);
  margin: 0;
  padding: clamp(7px, 0.8vw, 11px);
  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(74%, 96px);
  max-height: clamp(24px, 2.2vw, 34px);
  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: stretch;
  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, 85, 164, 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, 85, 164, 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) + 42vh);
  left: min(61vw, calc(100vw - 492px));
  right: auto;
  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, 85, 164, 0.08);
  backdrop-filter: blur(14px);
  user-select: none;
}

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

.lab-info-toggle {
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 0;
  background: rgba(0, 85, 164, 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, 85, 164, 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: var(--lab-search-top, calc(var(--site-header-height, 90px) + 12vh));
  right: auto;
  left: var(--lab-search-left, clamp(330px, 31.5vw, 650px));
  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, 85, 164, 0.08);
  backdrop-filter: blur(14px);
  user-select: none;
}

.lab-training-panel,
.lab-inspector {
  position: fixed;
  z-index: 34;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(0, 85, 164, 0.07), rgba(0, 0, 0, 0) 44%),
    rgba(0, 0, 0, 0.78);
  box-shadow: 0 0 34px rgba(0, 85, 164, 0.08);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.lab-training-panel {
  left: clamp(18px, 5vw, 72px);
  bottom: 18px;
  width: min(390px, calc(100vw - 36px));
  padding: 12px;
}

.lab-inspector {
  right: clamp(18px, 5vw, 72px);
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
  max-height: min(164px, 24svh);
  overflow: auto;
  padding: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

.lab-inspector::-webkit-scrollbar {
  width: 8px;
}

.lab-inspector::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lab-inspector::-webkit-scrollbar-thumb {
  background: rgba(0, 85, 164, 0.72);
  border-radius: 999px;
}

.lab-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.lab-panel-head strong {
  color: var(--green);
  font-size: 10px;
  font-weight: 500;
}

.lab-corpus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.lab-corpus-grid div {
  min-width: 0;
  padding: 9px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lab-corpus-grid dt,
.lab-corpus-grid dd {
  margin: 0;
}

.lab-corpus-grid dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  line-height: 1.1;
  text-transform: uppercase;
}

.lab-corpus-grid dd {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1;
}

.lab-source-mix,
.lab-process-list {
  display: grid;
  gap: 6px;
}

.lab-source-mix div,
.lab-process-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 9px;
  min-width: 0;
}

.lab-source-mix span,
.lab-process-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.lab-source-mix i,
.lab-process-list i {
  position: relative;
  display: block;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.lab-source-mix i::after,
.lab-process-list i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--mix, 0) * 100%);
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 85, 164, 0.62);
}

.lab-source-mix strong,
.lab-process-list strong {
  color: var(--green);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.lab-inspector h2 {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.lab-inspector p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.55;
}

.lab-inspector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lab-inspector-tags span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid rgba(0, 85, 164, 0.34);
  color: rgba(0, 85, 164, 0.82);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.lab-pipeline {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 33;
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  width: min(980px, calc(100vw - 260px));
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.lab-pipeline span {
  position: relative;
  display: grid;
  align-items: center;
  min-width: 0;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  line-height: 1.15;
  text-transform: uppercase;
}

.lab-pipeline span:last-child {
  border-right: 0;
}

.lab-pipeline span::before {
  content: "";
  position: absolute;
  left: 0;
  right: calc((1 - var(--stage-intensity, 0.12)) * 100%);
  bottom: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 85, 164, 0.62);
}

.lab-pipeline span::after {
  content: attr(data-count);
  position: absolute;
  top: 7px;
  right: 9px;
  color: var(--green);
  font-size: 8px;
  line-height: 1;
}

@media (max-width: 980px), (orientation: portrait) {
  .lab-training-panel {
    left: 14px;
    right: auto;
    bottom: 72px;
    width: min(360px, calc(100vw - 28px));
  }

  .lab-inspector {
    display: none;
  }

  .lab-pipeline {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: auto;
    min-height: 58px;
    transform: none;
  }

  .lab-pipeline span {
    min-height: 28px;
    font-size: 8px;
  }
}

@media (max-width: 620px) {
  .lab-training-panel {
    display: none;
  }

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

.lab-search.is-dragging {
  border-color: rgba(0, 85, 164, 0.76);
  box-shadow: 0 0 34px rgba(0, 85, 164, 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, 85, 164, 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, 85, 164, 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(240px, 32svh);
  overflow: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

.lab-search-results::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.lab-search-results::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.lab-search-results::-webkit-scrollbar-thumb {
  background: rgba(0, 85, 164, 0.72);
  border-radius: 999px;
}

.lab-search-results::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 85, 164, 0.9);
}

.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, 85, 164, 0.58);
  background: rgba(0, 85, 164, 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, 85, 164, 0.88);
  color: var(--green);
  outline: none;
}

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

.lab-zoom-guide {
  position: fixed;
  left: var(--lab-guide-end-x, 52vw);
  top: var(--lab-guide-end-y, 38vh);
  z-index: 41;
  display: grid;
  grid-template-columns: 74px auto;
  align-items: center;
  gap: 14px;
  color: var(--green);
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 0 10px rgba(0, 85, 164, 0.48));
  transform: translate3d(
    calc(var(--lab-guide-start-x, -120px) - var(--lab-guide-end-x, 52vw)),
    calc(var(--lab-guide-start-y, 46vh) - var(--lab-guide-end-y, 38vh)),
    0
  ) scale(0.86) rotate(-6deg);
  animation: labGuideEnter 4.2s cubic-bezier(0.2, 0.9, 0.22, 1) forwards;
}

.lab-zoom-guide svg {
  display: block;
  width: 74px;
  height: 46px;
  overflow: visible;
}

.lab-zoom-guide path,
.lab-zoom-guide line,
.lab-zoom-guide circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lab-zoom-guide .guide-body {
  stroke-width: 2.1;
  stroke-dasharray: 84;
  stroke-dashoffset: 84;
  animation: labGuideSketch 900ms ease-out 260ms forwards;
}

.lab-zoom-guide .guide-leg,
.lab-zoom-guide .guide-antenna {
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: labGuideSketch 760ms ease-out 420ms forwards;
}

.lab-zoom-guide .guide-eye,
.lab-zoom-guide .guide-node {
  fill: currentColor;
  stroke: none;
  opacity: 0;
  animation: labGuideBlink 2.1s steps(1, end) 680ms infinite;
}

.lab-zoom-guide::before,
.lab-zoom-guide::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 85, 164, 0.62);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: labGuideZoomPulse 1.08s ease-out 880ms 3;
}

.lab-zoom-guide::after {
  animation-delay: 1.2s;
}

.lab-zoom-guide-copy {
  display: grid;
  gap: 5px;
  min-width: 132px;
  padding: 9px 11px;
  border: 1px solid rgba(0, 85, 164, 0.42);
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 0 24px rgba(0, 85, 164, 0.08);
}

.lab-zoom-guide-copy strong {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.lab-zoom-guide-copy span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  line-height: 1.35;
}

@keyframes labGuideEnter {
  0% {
    opacity: 0;
  }

  13%,
  72% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  86% {
    opacity: 1;
    transform: translate3d(18px, -10px, 0) scale(0.96) rotate(4deg);
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--lab-guide-exit-x, 130px), var(--lab-guide-exit-y, -80px), 0) scale(0.78) rotate(8deg);
  }
}

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

@keyframes labGuideZoomPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }

  28% {
    opacity: 0.92;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.65);
  }
}

@keyframes labGuideBlink {
  0%,
  38%,
  100% {
    opacity: 1;
  }

  39%,
  45% {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lab-zoom-guide {
    display: none;
  }
}

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

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

@media (min-width: 981px) and (orientation: landscape) {
  html:has(.r2r-page),
  body:has(.r2r-page) {
    height: 100%;
    overflow: hidden;
  }

  .r2r-page {
    height: 100svh;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
  }

  .r2r-hero,
  .r2r-commercial,
  .r2r-tutorials {
    min-height: 100svh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .r2r-tutorials {
    box-sizing: border-box !important;
    position: relative;
    display: grid;
    grid-template-rows: auto auto minmax(54px, auto);
    align-content: center;
    min-height: 100svh !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: clamp(22px, 4vh, 46px) !important;
    padding-bottom: clamp(18px, 3vh, 34px) !important;
  }

  .r2r-commercial {
    box-sizing: border-box !important;
    display: grid;
    align-content: center;
    height: 100svh !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .r2r-tutorial-strip {
    grid-row: 2;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .r2r-tutorial-copy {
    min-height: 0;
  }

  .r2r-disclaimer {
    grid-row: 3;
    align-self: end;
    min-height: 54px;
    position: static !important;
    transform: none !important;
    margin-top: clamp(14px, 2vh, 24px) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

@media (min-width: 981px) and (orientation: landscape) and (max-height: 980px) {
  .r2r-commercial {
    margin-top: clamp(28px, 4vh, 44px) !important;
  }
}

.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;
}

@media (min-width: 981px) and (orientation: landscape) {
  html:has(.zanafilla-page),
  body:has(.zanafilla-page) {
    scrollbar-width: none;
  }

  html:has(.zanafilla-page)::-webkit-scrollbar,
  body:has(.zanafilla-page)::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .zanafilla-page::before,
  .zanafilla-page::after {
    content: "";
    position: fixed;
    right: 3px;
    z-index: 99;
    width: 6px;
    border-radius: 999px;
    pointer-events: none;
  }

  .zanafilla-page::before {
    top: var(--zana-scrollbar-top, var(--site-header-height, 90px));
    bottom: 0;
    background: rgba(255, 255, 255, 0.08);
  }

  .zanafilla-page::after {
    top: calc(var(--zana-scrollbar-top, var(--site-header-height, 90px)) + ((100svh - var(--zana-scrollbar-top, var(--site-header-height, 90px)) - var(--zana-scrollbar-thumb-size, 130px)) * var(--zana-page-scroll-progress, 0)));
    height: var(--zana-scrollbar-thumb-size, 130px);
    background: rgba(0, 85, 164, 0.72);
  }
}

.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, 85, 164, 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, 85, 164, 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, 85, 164, 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, 85, 164, 0.42);
}

.zana-capacity-samples circle:nth-child(5n) {
  display: block;
  fill: rgba(0, 85, 164, 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, 85, 164, 0.18);
}

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

.zana-svg-pressure circle.pressure-major {
  fill: rgba(0, 85, 164, 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, 85, 164, 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, 85, 164, 0.18);
  stroke: rgba(0, 85, 164, 1);
}

.zana-site-marker:hover path,
.zana-site-marker:focus-visible path {
  stroke: rgba(0, 85, 164, 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, 85, 164, 0.7),
    0 0 26px rgba(0, 85, 164, 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;
  /* 3 scroll beats: capacity (01) · pressure (02) · beginning (03). The old 4th
     beat (use-case media) was removed, so end the track after /03 — the demo
     video then sits directly under it instead of after an empty screen. */
  min-height: 300svh;
  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, 85, 164, 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;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

.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, 85, 164, 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(260px, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: clamp(14px, 1.6vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

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

.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: 68px 14px 14px;
  }

  .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;
    padding: 0;
    border: 0;
    scroll-snap-type: none;
  }
}

.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, 85, 164, 0.48);
  background: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 42px rgba(0, 85, 164, 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, 85, 164, 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, 85, 164, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 85, 164, 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, 85, 164, 0.08));
}

.memory-line {
  fill: none;
  stroke: rgba(0, 85, 164, 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, 85, 164, 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, 85, 164, 0.11);
  stroke: rgba(0, 85, 164, 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, 85, 164, 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, 85, 164, 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, 85, 164, 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, 85, 164, 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, 85, 164, 0.24);
  }

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

  100% {
    color: var(--green);
    text-shadow: 0 0 10px rgba(0, 85, 164, 0.6),
      0 0 22px rgba(0, 85, 164, 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, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  overflow: hidden;
}

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

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

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

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

.media-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  min-width: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: #000;
  overflow: hidden;
}

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

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

.project-media-grid.media-count-1 .media-slot,
.project-media-grid.media-count-2 .media-slot:last-child {
  border-bottom: 0;
}

.project-media-grid.media-count-1 .media-slot {
  border: 0;
}

.project-media-grid.media-count-3 .media-slot:first-child {
  border-bottom: 0;
}

.project-media-grid.media-count-3 .media-slot:last-child {
  border-bottom: 0;
}

.project-media-grid.media-count-4 .media-slot:nth-child(n+3) {
  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, 85, 164, 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, 85, 164, 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, 85, 164, 0.9);
  background: rgba(0, 85, 164, 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: 1180px) {
  .about-public-ledger {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .about-page {
    overflow-x: hidden;
  }

  .about-shell,
  .people-section,
  .about-intro,
  .about-public-section,
  .about-logos-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .people-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .about-intro {
    order: 1;
  }

  .people-section {
    order: 2;
  }

  .about-logos-section {
    order: 3;
    grid-column: 1 / -1;
  }

  .about-public-section {
    order: 3;
    grid-column: 1 / -1;
    overflow: hidden;
  }

  .about-logos-section {
    order: 4;
  }
/* Hamburger button: visible only on mobile */
  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 14px clamp(18px, 5vw, 72px);
  }

  /* Nav links: fullscreen overlay on mobile */
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 22px;
    font-weight: 400;
  }

  .nav-links.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 18px 24px;
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--text);
    opacity: 0.85;
    transition: color 0.15s, opacity 0.15s;
  }

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

  /* Mobile dropdown — inline stacked instead of absolute */
  .nav-dropdown {
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown-trigger {
    padding: 18px 24px;
    font-size: 22px;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: unset;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0 0 8px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 200ms ease, max-height 250ms ease, visibility 200ms ease;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-menu a {
    font-size: 17px;
    padding: 12px 24px;
    justify-content: center;
    opacity: 0.65;
    min-height: unset;
  }

  .nav-dropdown-menu a:hover {
    background: none;
  }

  /* Close button inside nav overlay */
  .nav-close {
    display: flex;
  }

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

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

  .about-main-column,
  .about-side-column {
    display: contents;
  }

  .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));
  }

  .about-public-ledger {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
  }

  .about-public-entry {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 12px 14px;
    row-gap: 5px;
  }

  .about-public-date {
    grid-row: auto;
  }

  .about-public-entry h4,
  .about-public-entry p {
    white-space: normal;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .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);
  }

  /* Lab: fixed non-draggable panels on mobile */
  .lab-info {
    top: 68px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    cursor: default;
    border-radius: 6px;
  }

  .lab-info-toggle {
    cursor: pointer;
    border-radius: 6px;
  }

  .lab-info.is-open .lab-info-toggle {
    border-radius: 6px 6px 0 0;
  }

  .lab-info.is-open .lab-info-copy {
    max-height: 30svh;
    overflow-y: auto;
  }

  .lab-search {
    top: 124px !important;
    left: 14px !important;
    right: 14px !important;
    width: auto !important;
    border-radius: 6px;
  }

  .lab-search-handle {
    cursor: default;
    border-radius: 6px 6px 0 0;
  }

  .lab-search-results {
    display: none;
  }

  .lab-search.is-results-open .lab-search-results {
    display: block;
    max-height: min(280px, 38svh);
  }

  .lab-readout {
    bottom: 14px;
    left: 14px;
    right: auto;
  }

  .lab-reset {
    bottom: 14px;
    right: 14px;
  }

  .zana-concept-copy {
    left: 22px;
    top: calc(var(--site-header-height, 72px) + 6px);
    bottom: clamp(54px, 7vh, 80px);
    width: calc(100vw - 44px);
    max-height: none;
    display: flex;
    flex-direction: column;
    padding-left: 16px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: none;
    overflow: visible;
  }

  .zana-concept-kicker {
    margin-bottom: 4px;
    padding: 6px 12px 4px;
    background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.32) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-left: 1px solid rgba(0, 85, 164, 0.42);
    width: fit-content;
  }

  .zana-concept-copy h1 {
    max-width: 22ch;
    font-size: clamp(22px, 6.4vw, 34px);
    padding: 0 12px 12px;
    background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 80%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-left: 1px solid rgba(0, 85, 164, 0.42);
  }

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

  .zana-concept-body {
    width: min(100%, 40ch);
    margin-top: auto;
    padding: 14px 12px 8px;
    background: linear-gradient(0deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.38) 80%, rgba(0,0,0,0) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-left: 1px solid rgba(0, 85, 164, 0.42);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

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

  /* Media layer: stack from top, scroll, compact on mobile */
  .zana-media-layer {
    inset: 68px 14px 14px;
    align-content: start;
    align-items: stretch;
    gap: 10px;
    padding-top: 4px;
  }

  .zana-media-copy,
  .zana-main-media {
    display: none;
  }

  .zana-usecase-strip {
    gap: 12px;
  }

  .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: calc(100vw - 48px);
    flex-wrap: wrap;
    white-space: normal;
    font-size: clamp(13px, 2.6vw, 20px);
    text-align: center;
    justify-content: center;
  }

  .r2r-type-segment {
    white-space: normal;
    width: auto;
    overflow: visible;
    border-right: none;
    animation: none;
  }

  .r2r-headline {
    animation: r2rClaimReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) 1100ms both;
  }

  .r2r-claim {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .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) {

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

  .about-intro {
    padding: 18px;
  }

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

  .about-public-section {
    width: 100%;
    max-width: 100%;
  }

  .people-grid,
  .people-grid-partners,
  .about-logos-grid {
    grid-template-columns: repeat(2, minmax(0, 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);
  }

  .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;
  }
}

/* Projects Atlas Redesign */
.projects-atlas {
  --atlas-line: rgba(255, 255, 255, 0.58);
  --atlas-line-soft: rgba(255, 255, 255, 0.16);
  --atlas-text: rgba(255, 255, 255, 0.82);
  --atlas-muted: rgba(255, 255, 255, 0.54);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100svh;
  min-height: 0;
  overflow: hidden;
  padding: 112px clamp(14px, 4vw, 54px) clamp(28px, 5vw, 58px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #000;
  background-size: 48px 48px;
}

.projects-atlas-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 24px;
  row-gap: 8px;
  width: 100%;
  margin: 0 auto 18px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--atlas-line-soft);
  border-bottom: 1px solid var(--atlas-line);
}

.atlas-kicker,
.atlas-heading p,
.atlas-stats,
.projects-index-head,
.projects-index-foot,
.projects-preview-label,
.projects-preview-meta,
.project-tile-index,
.project-tile-meta {
  font-family: "JetBrains Mono", Consolas, monospace;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
}

.atlas-kicker {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: var(--green);
  font-size: 11px;
}

.atlas-heading {
  grid-column: 1;
  grid-row: 2;
  min-width: 0;
}

.atlas-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 2.55vw, 56px);
  font-weight: 300;
  line-height: 0.98;
}

.atlas-heading p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--atlas-muted);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: normal;
}

.atlas-stats {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  justify-items: end;
  gap: 7px;
  color: var(--atlas-muted);
  font-size: 11px;
  white-space: nowrap;
}

.atlas-stats strong {
  color: #fff;
  font-weight: 300;
}

.projects-atlas-shell {
  display: grid;
  grid-template-columns: clamp(420px, 24vw, 620px) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  border: 1px solid var(--atlas-line);
  background: #000;
}

.projects-index-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  border-right: 1px solid var(--atlas-line);
}

.projects-index-head,
.projects-index-foot {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 96px;
  min-height: 42px;
  color: var(--atlas-muted);
  font-size: 10px;
  line-height: 1;
}

.projects-index-head {
  border-bottom: 1px solid var(--atlas-line);
}

.projects-index-foot {
  border-top: 1px solid var(--atlas-line);
}

.projects-index-head span,
.projects-index-foot span {
  display: grid;
  align-items: center;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--atlas-line-soft);
}

.projects-index-head span:last-child,
.projects-index-foot span:last-child {
  border-right: 0;
  justify-items: end;
}

.projects-atlas .projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
  max-height: none;
  min-height: 0;
  margin: 0;
  overflow: auto;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
  --project-tile-height: auto;
}

.projects-atlas .project-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 96px;
  place-items: stretch;
  min-height: 54px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--atlas-line-soft);
  background: rgba(0, 0, 0, 0.78);
  color: var(--atlas-text);
  font-size: 13px;
  line-height: 1.15;
  text-align: left;
}

.projects-atlas .project-tile:last-child {
  border-bottom: 0;
}

.projects-atlas .project-tile::before {
  inset: 0;
  background-image: var(--project-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: grayscale(0.1) contrast(1.08);
  transform: scale(1.015);
}

.projects-atlas .project-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 85, 164, 0.14), rgba(0, 0, 0, 0.88) 46%, rgba(0, 0, 0, 0.96));
  opacity: 0;
  transition: opacity 180ms ease;
}

.projects-atlas .project-tile span {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.projects-atlas .project-tile-index,
.projects-atlas .project-tile-name,
.projects-atlas .project-tile-meta {
  display: grid;
  align-items: center;
  min-height: 100%;
  border-right: 1px solid var(--atlas-line-soft);
}

.projects-atlas .project-tile-index {
  justify-items: center;
  color: var(--green);
  font-size: 11px;
}

.projects-atlas .project-tile-name {
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.projects-atlas .project-tile-meta {
  justify-items: end;
  padding: 0 12px;
  border-right: 0;
  color: var(--atlas-muted);
  font-size: 10px;
  white-space: nowrap;
}

.projects-atlas .project-tile:hover,
.projects-atlas .project-tile:focus,
.projects-atlas .project-tile.is-preview,
.projects-atlas .project-tile.is-active {
  border-color: rgba(0, 85, 164, 0.72);
  background: rgba(0, 85, 164, 0.03);
}

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

.projects-atlas .project-tile:hover::after,
.projects-atlas .project-tile:focus::after,
.projects-atlas .project-tile.is-preview::after,
.projects-atlas .project-tile.is-active::after {
  opacity: 1;
}

.projects-atlas .project-tile:hover .project-tile-name,
.projects-atlas .project-tile:focus .project-tile-name,
.projects-atlas .project-tile.is-preview .project-tile-name,
.projects-atlas .project-tile.is-active .project-tile-name,
.projects-atlas .project-tile.is-active .project-tile-index {
  color: var(--green);
}

.projects-atlas .project-tile.is-disabled {
  opacity: 0.48;
}

.projects-atlas .project-tile:focus-visible {
  outline: 1px solid var(--green);
  outline-offset: -5px;
}

.projects-preview-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  background: #000;
}

.projects-page.has-active-project .projects-preview-panel {
  grid-template-rows: minmax(128px, 0.42fr) minmax(0, 0.58fr);
}

.projects-preview-stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--atlas-line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #020202;
  background-size: 36px 36px;
}

.projects-boot-screen {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: clamp(10px, 2vh, 22px);
  min-width: 0;
  overflow: hidden;
  padding: clamp(46px, 7vh, 82px) clamp(24px, 4vw, 64px) clamp(22px, 4vw, 58px);
  background:
    linear-gradient(rgba(0, 85, 164, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 85, 164, 0.035) 1px, transparent 1px),
    #000;
  background-size: 22px 22px;
  cursor: var(--cursor-plus-green);
  transition: opacity 360ms ease, visibility 360ms ease;
}

.projects-boot-screen::before {
  content: "PS K4:\\projects> init atlas";
  position: absolute;
  top: clamp(16px, 2.4vw, 28px);
  left: clamp(18px, 3vw, 38px);
  color: rgba(0, 85, 164, 0.48);
  font-size: 11px;
  font-weight: 300;
}

.projects-boot-screen::after {
  content: "";
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(0, 85, 164, 0.28);
  pointer-events: none;
}

.projects-boot-screen.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.projects-boot-copy {
  align-self: start;
  min-width: 0;
  width: min(100%, var(--projects-boot-copy-width, 58ch));
  max-width: 100%;
  margin: 0;
  color: var(--green);
  font-size: var(--projects-boot-font-size, clamp(12px, 0.82vw, 16px));
  font-weight: 300;
  line-height: var(--projects-boot-line-height, 1.58);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.projects-boot-copy::after {
  content: "_";
  display: inline-block;
  margin-left: 2px;
  animation: projectsBootCursor 900ms steps(1, end) infinite;
}

.projects-boot-copy.is-done::after {
  content: "";
  display: none;
}

.projects-boot-prompt {
  align-self: end;
  min-width: 0;
  margin: 0;
  color: var(--green);
  font-size: var(--projects-boot-font-size, clamp(12px, 0.82vw, 16px));
  font-weight: 300;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  opacity: 0;
  transition: opacity 180ms ease;
}

.projects-boot-prompt.is-visible {
  opacity: 1;
}

.projects-boot-prompt::after {
  content: "_";
  display: inline-block;
  margin-left: 2px;
  animation: projectsBootCursor 900ms steps(1, end) infinite;
}

.projects-preview-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--atlas-preview-image, none);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 220ms ease, transform 420ms ease;
}

.projects-atlas.has-atlas-preview .projects-preview-media {
  opacity: 0.46;
  transform: scale(1);
}

.projects-preview-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.76)),
    linear-gradient(90deg, rgba(0, 85, 164, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(0, 85, 164, 0.1) 1px, transparent 1px);
  background-size: auto, 120px 120px, 120px 120px;
  pointer-events: none;
}

.projects-preview-marker {
  position: absolute;
  inset: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.projects-preview-marker span {
  position: absolute;
  background: rgba(0, 85, 164, 0.86);
}

.projects-preview-marker span:first-child {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.projects-preview-marker span:last-child {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.projects-preview-copy {
  position: absolute;
  left: clamp(20px, 4vw, 52px);
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(22px, 4vw, 52px);
  z-index: 3;
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.projects-preview-label {
  margin: 0;
  color: var(--green);
  font-size: 11px;
}

.projects-preview-title {
  margin: 0;
  color: #fff;
  font-size: 86px;
  font-weight: 300;
  line-height: 0.92;
  overflow-wrap: anywhere;
}

.projects-page.has-active-project .projects-preview-title {
  font-size: clamp(42px, 5vw, 78px);
}

.projects-preview-description {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  overflow-wrap: normal;
}

.projects-page.has-active-project .projects-preview-description,
.projects-page.has-active-project .projects-preview-meta {
  display: none;
}

.projects-preview-meta {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(100%, 640px);
  color: var(--atlas-muted);
  font-size: 10px;
  background: rgba(0, 0, 0, 0.72);
  border-left: 1px solid var(--atlas-line);
  border-bottom: 1px solid var(--atlas-line);
}

.projects-preview-meta span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-right: 1px solid var(--atlas-line-soft);
}

.projects-preview-meta span:last-child {
  border-right: 0;
}

.projects-atlas .project-detail {
  width: 100%;
  min-height: 0;
  margin: 0;
  border: 0;
  background: #000;
  overflow: hidden;
}

.projects-atlas .project-detail-header {
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid var(--atlas-line);
}

.projects-atlas .project-detail-body {
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  height: calc(100% - 46px);
  min-height: 0;
}

.projects-atlas .project-info {
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--atlas-line);
}

.projects-atlas .project-title {
  font-size: var(--project-title-fit-size, 54px);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
}

.projects-atlas .project-title.is-single-word {
  white-space: nowrap;
}

.projects-atlas .project-title.is-long {
  font-size: var(--project-title-fit-size, 34px);
  line-height: 1.02;
}

.projects-atlas .project-meta {
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
}

.projects-page.has-active-project .project-meta {
  display: none;
}

.projects-atlas .project-description {
  width: 100%;
  max-width: 42ch;
  margin-top: 22px;
  font-size: 12px;
  max-height: 14.6em;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 85, 164, 0.72) rgba(255, 255, 255, 0.08);
}

.projects-atlas .project-media-grid {
  grid-column: auto;
  height: 100%;
  max-height: none;
  min-height: 0;
}

.project-media-grid.media-viewer {
  position: relative;
  display: grid;
  place-items: center;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(0, 1fr);
  overflow: hidden;
  background: #000;
}

.project-media-grid.media-viewer .media-slot {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  min-height: 100%;
  border-right: 0;
  border-bottom: 0;
  background: #050505;
}

.project-media-grid.media-viewer .media-slot img,
.project-media-grid.media-viewer .media-slot video {
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.project-media-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-media-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78%, 980px);
  height: calc(100% - 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: #000;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 220ms ease, border-color 180ms ease;
}

.project-media-card.is-current {
  z-index: 2;
  opacity: 1;
}

.project-media-card.is-prev,
.project-media-card.is-next {
  z-index: 1;
  width: min(36%, 420px);
  height: calc(100% - 92px);
  opacity: 0.42;
  cursor: var(--cursor-plus-green);
}

.project-media-card.is-prev {
  transform: translate(-142%, -50%) scale(0.92);
}

.project-media-card.is-next {
  transform: translate(42%, -50%) scale(0.92);
}

.project-media-card.is-prev:hover,
.project-media-card.is-next:hover,
.project-media-card.is-prev:focus-within,
.project-media-card.is-next:focus-within {
  border-color: rgba(0, 85, 164, 0.7);
  opacity: 0.62;
}

.project-media-card .media-slot,
.project-media-card .media-slot img,
.project-media-card .media-slot video {
  width: 100%;
  height: 100%;
}

.project-media-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(42px, 5vw, 64px);
  height: clamp(64px, 8vw, 92px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.66);
  color: #fff;
  font: 300 clamp(30px, 4vw, 54px)/1 "JetBrains Mono", Consolas, monospace;
  cursor: var(--cursor-plus-green);
  transform: translateY(-50%);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.project-media-nav:hover,
.project-media-nav:focus-visible {
  border-color: rgba(0, 85, 164, 0.9);
  background: rgba(0, 0, 0, 0.84);
  color: var(--green);
  outline: none;
}

.project-media-prev {
  left: 18px;
}

.project-media-next {
  right: 18px;
}

.project-media-counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.72);
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 300;
  line-height: 1;
}

.project-record-tag {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 420;
  width: min(310px, calc(100vw - 28px));
  padding: 13px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.78);
  color: rgba(255, 255, 255, 0.76);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 140ms ease, visibility 140ms ease;
}

.project-record-tag.is-visible {
  opacity: 1;
  visibility: visible;
}

.record-tag-title {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
}

.record-tag-list {
  display: grid;
  gap: 7px;
  margin: 0;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
}

.record-tag-list div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
}

.record-tag-list dt,
.record-tag-list dd {
  margin: 0;
}

.record-tag-list dt {
  color: rgba(255, 255, 255, 0.42);
}

.record-tag-list dd {
  min-width: 0;
  color: rgba(255, 255, 255, 0.84);
  overflow-wrap: anywhere;
}

@media (max-width: 980px), (orientation: portrait) {
  .projects-atlas {
    display: block;
    height: auto;
    min-height: 100svh;
    overflow: visible;
    padding: 92px 14px 28px;
    background-size: 34px 34px;
  }

  .projects-atlas-header {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
    margin-bottom: 14px;
  }

  .atlas-heading h1 {
    font-size: clamp(36px, 9vw, 48px);
  }

  .atlas-stats {
    grid-column: 1;
    grid-row: auto;
    justify-items: start;
  }

  .projects-atlas-shell {
    grid-template-columns: 1fr;
    width: min(100%, 920px);
    height: auto;
    min-height: auto;
  }

  .projects-index-panel {
    border-right: 0;
  }

  .projects-atlas .projects-grid {
    max-height: min(48svh, 520px);
    overflow: auto;
  }

  .projects-preview-panel {
    grid-template-rows: auto auto;
    order: -1;
    border-bottom: 1px solid var(--atlas-line);
  }

  .projects-page.has-active-project .projects-preview-panel {
    grid-template-rows: auto auto;
  }

  .projects-preview-stage {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .projects-page.is-projects-booting .projects-preview-stage {
    aspect-ratio: auto;
    min-height: min(62svh, 560px);
  }

  .projects-boot-screen {
    padding: clamp(38px, 6vh, 56px) clamp(18px, 5vw, 30px) 22px;
  }

  .projects-boot-copy {
    width: 100%;
  }

  .projects-boot-prompt {
    width: 100%;
  }

  .projects-preview-title {
    font-size: 54px;
  }

  .projects-atlas .project-detail-body {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .projects-atlas .project-info {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--atlas-line);
  }

  .project-record-tag {
    display: none;
  }

  .projects-page.has-active-project .project-meta {
    display: grid;
  }

  .project-media-card {
    width: min(82%, 720px);
    height: calc(100% - 28px);
  }

  .project-media-card.is-prev,
  .project-media-card.is-next {
    width: 30%;
    height: calc(100% - 78px);
  }
}

@media (max-width: 540px) {
  .projects-index-head,
  .projects-index-foot,
  .projects-atlas .project-tile {
    grid-template-columns: 44px minmax(0, 1fr) 74px;
  }

  .projects-index-head,
  .projects-index-foot {
    min-height: 36px;
  }

  .projects-index-head span,
  .projects-index-foot span {
    padding: 0 9px;
  }

  .projects-atlas .project-tile {
    min-height: 50px;
  }

  .projects-atlas .project-tile-name {
    padding: 0 10px;
    font-size: 12px;
  }

  .projects-atlas .project-tile-meta {
    padding: 0 9px;
    font-size: 9px;
  }

  .projects-preview-stage {
    min-height: 0;
  }

  .projects-page.is-projects-booting .projects-preview-stage {
    min-height: min(66svh, 540px);
  }

  .projects-preview-marker {
    inset: 14px;
  }

  .projects-preview-copy {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .projects-preview-title {
    font-size: 38px;
  }

  .projects-preview-description {
    font-size: 12px;
  }

  .projects-preview-meta {
    position: relative;
    border-left: 0;
    justify-content: flex-start;
  }

  .projects-page.has-active-project .projects-preview-meta {
    display: flex;
  }

  .projects-preview-meta span {
    min-height: 34px;
    padding: 0 10px;
  }

  .projects-atlas .project-title {
    font-size: var(--project-title-fit-size, 38px);
  }

  .projects-atlas .project-title.is-long {
    font-size: var(--project-title-fit-size, 28px);
  }

  .project-media-card {
    width: 84%;
  }

  .project-media-card.is-prev {
    transform: translate(-136%, -50%) scale(0.9);
  }

  .project-media-card.is-next {
    transform: translate(36%, -50%) scale(0.9);
  }

  .project-media-nav {
    width: 38px;
    height: 58px;
  }
}

@media (hover: none) {
  .project-record-tag {
    display: none;
  }

  .projects-page.has-active-project .project-meta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .projects-atlas .project-tile,
  .projects-atlas .project-tile::before,
  .projects-atlas .project-tile::after,
  .projects-preview-media,
  .projects-boot-screen {
    transition: none;
  }

  .projects-boot-copy::after {
    animation: none;
  }

  .projects-boot-prompt::after {
    animation: none;
  }
}

@keyframes projectsBootCursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

/* === Genese Page === */
/* Genese page — hero behind login gate */
.genese-page {
  min-height: 100svh;
  background: #000;
  position: relative;
}

.genese-hero {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 18vh, 200px) clamp(18px, 5vw, 72px) clamp(60px, 8vh, 120px);
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(0, 85, 164, 0.08) 0%, transparent 70%),
    #000;
  z-index: 0;
}

.genese-hero-inner {
  max-width: 720px;
  text-align: center;
}

.genese-eyebrow {
  margin: 0 0 22px;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.genese-title {
  margin: 0 0 20px;
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text);
}

.genese-g {
  color: #0055A4;
}

.genese-rest {
  color: var(--text);
}

.genese-subtitle {
  margin: 0;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--text);
  opacity: 0.85;
}
