:root {
  --font-geist-sans: "Helvetica Neue", Arial, sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ink: #050708;
  --ink-deep: #020304;
  --ink-soft: #0b1012;
  --paper: #f1f0eb;
  --muted: #9aa3a3;
  --muted-dark: #6d7777;
  --line: rgba(218, 226, 226, 0.14);
  --line-strong: rgba(218, 226, 226, 0.3);
  --green: #087a5b;
  --green-hi: #18bd8d;
  --red: #b3283d;
  --silver: #a7adb2;
  --blue: #6c9bb8;
  --gold: #b59b65;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

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

::selection {
  background: var(--green);
  color: white;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 11%, rgba(8, 122, 91, 0.13), transparent 30rem),
    radial-gradient(circle at 12% 59%, rgba(179, 40, 61, 0.045), transparent 34rem),
    var(--ink);
}

.ambient {
  position: absolute;
  z-index: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.ambient--green {
  top: 42rem;
  left: 7%;
  box-shadow: 0 0 260px 190px rgba(8, 122, 91, 0.045);
}

.ambient--red {
  top: 126rem;
  right: 4%;
  box-shadow: 0 0 240px 160px rgba(179, 40, 61, 0.035);
}

.site-header,
.hero,
.section,
.contact-section,
.site-footer {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 96px), 1540px);
  margin: 0 auto;
}

.site-header {
  display: grid;
  min-height: 92px;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  gap: 11px;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 560;
  letter-spacing: 0.43em;
  line-height: 1;
}

.wordmark-mark {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-hi);
  color: var(--green-hi);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: clamp(24px, 3.2vw, 56px);
  align-items: center;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact {
  position: relative;
  color: #adb5b5;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--green-hi);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.header-contact:hover,
.header-contact:focus-visible {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-self: end;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-contact b {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  color: var(--green-hi);
  font-size: 1rem;
  font-weight: 400;
  transition: 180ms ease;
}

.header-contact:hover b,
.header-contact:focus-visible b {
  border-color: var(--green-hi);
  background: var(--green);
  color: white;
  transform: translate(2px, -2px);
}

.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: 760px;
  padding: 78px 0 68px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 108px);
  align-items: center;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -12%;
  bottom: 0;
  left: 41%;
  background-image:
    linear-gradient(rgba(218, 226, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 226, 226, 0.08) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 76%, transparent);
  opacity: 0.35;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(4px, 2.4vw, 42px);
}

.hero-meta,
.visual-readout,
.hero-footnote,
.lab-stamp,
.system-card__top,
.system-card__footer,
.capability-number,
.section-note {
  font-family: var(--font-geist-mono), monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  max-width: 560px;
  margin-bottom: 80px;
  justify-content: space-between;
  color: #6f7979;
  font-size: 0.75rem;
}

.hero-meta span:last-child {
  color: var(--green-hi);
}

.eyebrow,
.kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 30px;
  color: var(--green-hi);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow-line {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--green-hi);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-weight: 430;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.6rem, 5.6vw, 6.6rem);
}

.hero h1 em,
.contact-section h2 em {
  color: #b7bebd;
  font-style: normal;
}

.hero-lede {
  max-width: 570px;
  margin: 34px 0 0;
  color: #aeb7b6;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 350;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 24px;
  gap: 42px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line-strong);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button span {
  color: var(--green-hi);
  font-size: 1.05rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.button--primary span {
  color: white;
}

.button--primary:hover,
.button--primary:focus-visible {
  border-color: var(--green-hi);
  background: var(--green-hi);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.04);
}

.hero-footnote {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 62px;
  color: #6f7a7a;
  font-size: 0.75rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-hi);
  box-shadow: 0 0 14px rgba(24, 189, 141, 0.8);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.visual-frame {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020405;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.02);
}

.visual-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 226, 226, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 226, 226, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 80%, transparent);
  opacity: 0.35;
}

.visual-wash {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 4, 5, 0.76), transparent 25%, transparent 82%, rgba(2, 4, 5, 0.32)),
    linear-gradient(180deg, rgba(2, 4, 5, 0.28), transparent 28%, transparent 70%, rgba(2, 4, 5, 0.7));
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  z-index: 5;
  width: 27px;
  height: 27px;
  border-color: rgba(241, 240, 235, 0.72);
}

.frame-corner--tl {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.frame-corner--tr {
  top: -1px;
  right: -1px;
  border-top: 1px solid;
  border-right: 1px solid;
}

.frame-corner--bl {
  bottom: -1px;
  left: -1px;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.frame-corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.visual-crosshair {
  position: absolute;
  z-index: 4;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(24, 189, 141, 0.76);
}

.visual-crosshair--one {
  top: 25%;
  left: 28%;
}

.visual-crosshair--two {
  right: 16%;
  bottom: 25%;
  border-color: rgba(179, 40, 61, 0.78);
}

.visual-readout {
  position: absolute;
  z-index: 6;
  right: 22px;
  left: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(241, 240, 235, 0.58);
  font-size: 0.75rem;
}

.visual-readout--top {
  top: 22px;
}

.visual-readout--bottom {
  bottom: 22px;
}

.readout-live {
  color: var(--green-hi);
}

.visual-caption {
  display: grid;
  margin-top: 17px;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  color: #6f7979;
}

.visual-caption > span {
  color: var(--green-hi);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
}

.visual-caption p {
  max-width: 380px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-scroll {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: #788181;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-scroll i {
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-hi), var(--line-strong));
}

.section {
  padding: 148px 0;
}

.section-topline {
  display: flex;
  min-height: 42px;
  padding-bottom: 20px;
  justify-content: space-between;
  gap: 36px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-topline .kicker {
  margin: 0;
}

.section-note {
  max-width: 390px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: right;
}

.systems-heading {
  display: grid;
  margin: 54px 0 72px;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 10vw, 190px);
  align-items: end;
}

.section h2 {
  font-size: clamp(2.9rem, 5vw, 6.15rem);
}

.systems-heading p,
.capability-intro > p,
.lab-copy > p,
.company-copy p,
.contact-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 350;
  line-height: 1.75;
}

.systems-heading p {
  padding-bottom: 5px;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.system-card {
  position: relative;
  display: flex;
  min-height: 472px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--ink-soft);
  transition: border-color 220ms ease, transform 220ms ease;
}

.system-card:nth-child(-n + 2) {
  grid-column: span 3;
  min-height: 525px;
}

.system-card:nth-child(n + 3) {
  grid-column: span 2;
}

.system-card:hover {
  border-color: rgba(24, 189, 141, 0.54);
  transform: translateY(-4px);
}

.system-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(218, 226, 226, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(218, 226, 226, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.system-card--emerald {
  background:
    radial-gradient(circle at 78% 38%, rgba(8, 122, 91, 0.35), transparent 31%),
    linear-gradient(145deg, rgba(24, 189, 141, 0.08), transparent 45%),
    var(--ink-soft);
}

.system-card--crimson {
  background:
    radial-gradient(circle at 78% 45%, rgba(179, 40, 61, 0.22), transparent 32%),
    linear-gradient(145deg, rgba(167, 173, 178, 0.09), transparent 46%),
    var(--ink-soft);
}

.system-card--silver {
  background: linear-gradient(145deg, rgba(167, 173, 178, 0.11), transparent 50%), var(--ink-soft);
}

.system-card--blue {
  background: radial-gradient(circle at 75% 35%, rgba(108, 155, 184, 0.2), transparent 34%), var(--ink-soft);
}

.system-card--gold {
  background: radial-gradient(circle at 75% 34%, rgba(181, 155, 101, 0.18), transparent 34%), var(--ink-soft);
}

.system-card__top,
.system-card__body,
.system-card__footer {
  position: relative;
  z-index: 3;
}

.system-card__top {
  display: flex;
  padding: 22px 24px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.system-card__top span:first-child {
  color: var(--green-hi);
}

.system-card__visual {
  position: absolute;
  top: 88px;
  right: 9%;
  width: 47%;
  aspect-ratio: 1;
  opacity: 0.92;
}

.signal-ring,
.signal-node,
.signal-line {
  position: absolute;
  display: block;
}

.signal-ring {
  inset: 8%;
  border: 1px solid rgba(24, 189, 141, 0.34);
  border-radius: 50%;
  transform: rotateX(58deg) rotateZ(24deg);
}

.signal-ring--two {
  inset: 25%;
  border-color: rgba(167, 173, 178, 0.34);
  transform: rotateY(64deg) rotateZ(-29deg);
}

.signal-node {
  top: 50%;
  left: 50%;
  width: 22%;
  height: 22%;
  border: 1px solid var(--green-hi);
  background: rgba(8, 122, 91, 0.3);
  box-shadow: 0 0 34px rgba(24, 189, 141, 0.36);
  transform: translate(-50%, -50%) rotate(45deg);
}

.signal-line {
  top: 50%;
  left: -9%;
  width: 118%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 189, 141, 0.65), transparent);
  transform: rotate(24deg);
}

.signal-line--two {
  transform: rotate(-34deg);
  background: linear-gradient(90deg, transparent, rgba(167, 173, 178, 0.5), transparent);
}

.system-card--crimson .signal-ring:first-child,
.system-card--crimson .signal-node {
  border-color: rgba(179, 40, 61, 0.76);
}

.system-card--crimson .signal-node {
  background: rgba(179, 40, 61, 0.26);
  box-shadow: 0 0 34px rgba(179, 40, 61, 0.3);
}

.system-card--blue .signal-ring:first-child,
.system-card--blue .signal-node {
  border-color: rgba(108, 155, 184, 0.76);
}

.system-card--gold .signal-ring:first-child,
.system-card--gold .signal-node {
  border-color: rgba(181, 155, 101, 0.8);
}

.system-card__body {
  margin-top: auto;
  padding: 34px 30px 28px;
}

.system-card__body p {
  margin: 0 0 14px;
  color: var(--green-hi);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
}

.system-card--crimson .system-card__body p {
  color: #db6274;
}

.system-card__body h3 {
  max-width: 500px;
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.05vw, 3.8rem);
  font-weight: 420;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.system-card:nth-child(n + 3) .system-card__body h3 {
  font-size: clamp(1.6rem, 2.45vw, 2.8rem);
}

.system-card__body > span {
  display: block;
  max-width: 520px;
  color: #929d9c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.system-card__footer {
  display: flex;
  padding: 17px 24px 22px;
  justify-content: space-between;
  color: #687272;
  font-size: 0.75rem;
}

.system-card__footer b {
  color: var(--green-hi);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.system-card:hover .system-card__footer b {
  transform: translate(3px, -3px);
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.35fr;
  gap: clamp(70px, 10vw, 180px);
  border-top: 1px solid var(--line);
}

.capability-intro {
  position: sticky;
  top: 36px;
  height: fit-content;
}

.capability-intro h2 {
  max-width: 560px;
}

.capability-intro > p {
  max-width: 500px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  margin-top: 36px;
  padding-bottom: 9px;
  gap: 30px;
  border-bottom: 1px solid var(--green-hi);
  color: var(--paper);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.text-link span {
  color: var(--green-hi);
  transition: transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green-hi);
}

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

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

.capability-row {
  display: grid;
  min-height: 163px;
  padding: 28px 6px;
  grid-template-columns: 48px minmax(150px, 0.78fr) 1.15fr 24px;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.capability-number {
  color: var(--green-hi);
  font-size: 0.75rem;
}

.capability-row h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 440;
  letter-spacing: -0.03em;
}

.capability-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.capability-row i {
  color: #7d8787;
  font-family: var(--font-geist-mono), monospace;
  font-size: 1.35rem;
  font-style: normal;
  transition: 180ms ease;
}

.capability-row:hover i {
  color: var(--green-hi);
  transform: rotate(45deg);
}

.lab-section {
  display: grid;
  min-height: 660px;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--ink-soft) 0 50%, transparent 50%),
    radial-gradient(circle at 76% 52%, rgba(8, 122, 91, 0.18), transparent 31%),
    #070a0b;
}

.lab-copy {
  position: relative;
  z-index: 4;
  padding: clamp(40px, 6vw, 96px);
}

.lab-copy h2 {
  max-width: 690px;
}

.lab-copy > p:not(.kicker) {
  max-width: 570px;
  margin-top: 32px;
}

.lab-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 600px;
}

.lab-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76%, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(167, 173, 178, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(62deg) rotateZ(19deg);
}

.lab-orbit--two {
  width: min(55%, 375px);
  border-color: rgba(24, 189, 141, 0.44);
  transform: translate(-50%, -50%) rotateY(68deg) rotateZ(-27deg);
}

.lab-orbit--three {
  width: min(40%, 270px);
  border-color: rgba(179, 40, 61, 0.32);
  transform: translate(-50%, -50%) rotateX(75deg) rotateZ(58deg);
}

.lab-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid var(--green-hi);
  background: rgba(8, 122, 91, 0.17);
  box-shadow: inset 0 0 24px rgba(24, 189, 141, 0.28), 0 0 74px rgba(8, 122, 91, 0.24);
  transform: translate(-50%, -50%) rotate(45deg);
}

.lab-core span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #47f2bd;
  box-shadow: 0 0 24px 8px rgba(71, 242, 189, 0.75);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lab-axis {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 570px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 173, 178, 0.34), transparent);
  transform: translate(-50%, -50%) rotate(23deg);
}

.lab-axis--y {
  transform: translate(-50%, -50%) rotate(-37deg);
  background: linear-gradient(90deg, transparent, rgba(24, 189, 141, 0.32), transparent);
}

.lab-stamp {
  position: absolute;
  right: 25px;
  bottom: 23px;
  display: flex;
  gap: 25px;
  color: rgba(241, 240, 235, 0.3);
  font-size: 0.75rem;
}

.lab-stamp span:last-child {
  color: var(--green-hi);
}

.company-section {
  border-bottom: 1px solid var(--line);
}

.company-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: 1.55fr 0.72fr;
  gap: clamp(70px, 10vw, 190px);
}

.company-grid h2 {
  max-width: 900px;
}

.company-copy {
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: end;
}

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

.principle {
  display: flex;
  min-height: 105px;
  padding: 25px 28px;
  gap: 20px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.principle:last-child {
  border-right: 0;
}

.principle span {
  color: var(--green-hi);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
}

.principle p {
  margin: 0;
  color: #c1c7c6;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-section {
  display: flex;
  min-height: 700px;
  padding: 150px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 920px);
  aspect-ratio: 1;
  border: 1px solid rgba(167, 173, 178, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(167, 173, 178, 0.015),
    0 0 0 170px rgba(167, 173, 178, 0.01),
    inset 0 0 100px rgba(8, 122, 91, 0.08);
  transform: translate(-50%, -50%);
}

.contact-section > *:not(.contact-glow) {
  position: relative;
  z-index: 2;
}

.contact-section .kicker {
  justify-content: center;
}

.contact-section h2 {
  font-size: clamp(3.35rem, 7vw, 8.5rem);
}

.contact-lede {
  max-width: 530px;
  margin: 34px 0 38px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
}

.contact-actions .button {
  min-width: 290px;
}

.contact-actions > span {
  color: #606b6b;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  min-height: 125px;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: #6d7777;
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

@media (max-width: 1160px) {
  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    width: min(calc(100% - 64px), 1540px);
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 5.8vw, 5.4rem);
  }

  .visual-frame,
  .visual-frame img {
    min-height: 500px;
  }

  .systems-heading {
    gap: 70px;
  }

  .capabilities-section {
    gap: 70px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .section,
  .contact-section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .site-header {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary i {
    width: 17px;
    height: 1px;
    background: var(--paper);
    transition: transform 180ms ease;
  }

  .mobile-nav[open] summary i:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-nav[open] summary i:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: flex;
    width: min(82vw, 340px);
    padding: 20px 24px;
    flex-direction: column;
    border: 1px solid var(--line-strong);
    background: rgba(5, 7, 8, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  }

  .mobile-nav nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-geist-mono), monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 90px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-grid {
    top: 0;
    right: -20px;
    bottom: 0;
    left: 15%;
    background-size: 62px 62px;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-meta {
    margin-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 11vw, 5.8rem);
  }

  .hero-visual {
    width: 100%;
  }

  .visual-frame,
  .visual-frame img {
    min-height: 0;
    aspect-ratio: 1.15;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 104px 0;
  }

  .section-topline {
    flex-direction: column;
    gap: 17px;
  }

  .section-note {
    max-width: 470px;
    text-align: left;
  }

  .systems-heading,
  .capabilities-section,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .systems-heading {
    margin: 48px 0 50px;
  }

  .systems-heading p {
    max-width: 520px;
  }

  .system-card:nth-child(n) {
    grid-column: span 3;
    min-height: 430px;
  }

  .system-card:nth-child(-n + 2) {
    min-height: 470px;
  }

  .system-card:nth-child(n + 3) .system-card__body h3,
  .system-card__body h3 {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .capability-intro {
    position: static;
  }

  .capability-row {
    grid-template-columns: 38px 1fr 24px;
    gap: 18px;
  }

  .capability-row p {
    grid-column: 2;
  }

  .capability-row i {
    grid-column: 3;
    grid-row: 1;
  }

  .lab-section {
    min-height: 800px;
    grid-template-columns: 1fr;
    align-items: start;
    background:
      linear-gradient(180deg, var(--ink-soft) 0 58%, transparent 58%),
      radial-gradient(circle at 50% 82%, rgba(8, 122, 91, 0.2), transparent 34%),
      #070a0b;
  }

  .lab-copy {
    grid-column: 1;
    grid-row: 1;
    padding: 48px 34px 30px;
  }

  .lab-visual {
    grid-column: 1;
    grid-row: 1;
    min-height: 800px;
  }

  .lab-visual::after {
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(180deg, transparent, #070a0b 66%);
    content: "";
  }

  .lab-stamp {
    right: 22px;
    bottom: 22px;
    flex-direction: column;
    gap: 8px;
    align-items: end;
  }

  .principles-grid {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .contact-section {
    min-height: 610px;
    padding: 110px 0;
  }

  .site-footer {
    padding: 32px 0;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .site-footer .wordmark,
  .site-footer p:last-child {
    justify-self: center;
  }
}

/* Final brand correction: use the supplied CAESTOL lockup and the reference's black page tone. */
.approved-hero { background: #000; }
.hero-logo { display: block; width: clamp(170px, 15.5vw, 260px); height: auto; line-height: 0; letter-spacing: 0; }
.hero-logo img { display: block; width: 100%; height: auto; }
.hero-nav { align-items: flex-start; padding-top: 14px; }
.hero-nav nav { padding-top: clamp(12px, 1vw, 17px); }
.hero-menu { margin-top: 8px; }
.hero-copy-real h1 { color: #f0efea; }
.hero-copy-real > p:not(.hero-eyebrow) { color: #d0cfca; }
.hero-art { background: transparent; }
.site-footer .wordmark-mark { display: none; }
.hero-art--logo { top: 4%; right: 2%; width: 55%; height: 92%; overflow: visible; }
.hero-art--logo img { position: absolute; top: 12%; left: 18%; width: 64%; max-width: 510px; height: auto; display: block; }

@media (max-width: 820px) {
  .hero-logo { width: 145px; }
  .hero-nav { padding-top: 10px; }
  .hero-art--logo { top: 42%; right: 0; width: 100%; height: 52%; }
  .hero-art--logo img { top: 0; left: 20%; width: 60%; }
}

/* Match the reference wordmark; keep the supplied emblem restrained in the former C position. */
.hero-logo { display: block; width: clamp(205px, 17.8vw, 300px); height: auto; line-height: 0; font-size: 0; letter-spacing: 0; }
.hero-logo img { display: block; width: 100%; height: auto; }
.hero-art--logo img { top: 49%; left: 49%; width: 1%; max-width: 8px; min-width: 4px; }
.hero-art--logo img { display: block; position: absolute; top: 50%; left: 50%; width: clamp(90px, 11vw, 150px); max-width: 150px; min-width: 90px; height: auto; object-fit: contain; transform: translate(-50%, -50%); }

@media (max-width: 820px) {
  .hero-logo { width: 155px; }
  .hero-art--logo img { top: 50%; left: 50%; width: 100px; min-width: 100px; max-width: 100px; transform: translate(-50%, -50%); }
}

/* Reference-faithful hero treatment. Text remains HTML; the supplied artwork is cropped before the private cards begin. */
.approved-hero { min-height: 0; height: auto; aspect-ratio: 1680 / 945; background: #020405; }
.approved-hero::before { display: none; }
.hero-nav { top: 0; right: 2%; left: 2%; height: 9%; border: 0; }
.hero-logo { color: #eef0eb; font-family: Arial, sans-serif; font-size: clamp(1rem, 1.75vw, 1.7rem); font-weight: 500; letter-spacing: .32em; }
.hero-logo-mark { display: none; }
.hero-nav nav { gap: clamp(26px, 5vw, 82px); color: #d7d9d4; font-size: clamp(.62rem, .83vw, .86rem); letter-spacing: .06em; }
.hero-menu { width: 4.6%; border-left: 1px solid rgba(255,255,255,.35); color: #ee334b; font-size: 1.5rem; line-height: 1; text-align: right; }
.hero-content { top: 17%; right: 0; bottom: 21%; left: 0; display: block; }
.hero-copy-real { position: absolute; top: 17%; left: 4.8%; z-index: 3; max-width: 45%; }
.hero-eyebrow { margin-bottom: 3.3%; color: #13bd81; font-size: clamp(.58rem, .88vw, .92rem); letter-spacing: .17em; }
.hero-copy-real h1 { color: #f0f0eb; font-family: Arial, sans-serif; font-size: clamp(2.2rem, 4.2vw, 4.7rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.14; }
.hero-copy-real h1 em { color: inherit; }
.hero-copy-real > p:not(.hero-eyebrow) { max-width: 590px; margin-top: 3.7%; color: #d0d2cd; font-size: clamp(.9rem, 1.33vw, 1.42rem); line-height: 1.5; }
.hero-actions-real { gap: 1.4vw; margin-top: 5.5%; }
.hero-actions-real .button { min-width: clamp(160px, 15.3vw, 260px); padding: 1.15em 1.4em; border-radius: 2px; font-size: clamp(.6rem, .82vw, .84rem); letter-spacing: .12em; text-transform: uppercase; }
.hero-actions-real .button--primary { background: #08794f; border-color: #0d9a68; }
.hero-actions-real .button--ghost { border: 1px solid #656865; }
.hero-art { position: absolute; top: -12%; right: 0; width: 58%; height: 116%; overflow: hidden; }
.hero-art img { position: absolute; top: 0; left: -39%; width: 168%; max-width: none; height: auto; display: block; }
.hero-art svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.art-guides, .art-particles, .art-c, .art-core { transform-origin: center; }
.art-c polygon { stroke: rgba(220, 235, 228, .34); stroke-width: 1.2; }
.art-core polygon { filter: drop-shadow(0 0 5px rgba(33, 255, 188, .4)); }
.hero-footer-real { right: 4.8%; bottom: 2.7%; left: 4.8%; display: flex; align-items: center; gap: 1.5%; color: #13bd81; font-size: clamp(.55rem, .78vw, .78rem); letter-spacing: .18em; }
.hero-rule { display: block; width: 28%; height: 1px; background: rgba(190,196,190,.4); }
.hero-scroll { margin-left: auto; color: #7c837e; }

@media (max-width: 820px) {
  .approved-hero { min-height: 640px; aspect-ratio: auto; }
  .hero-nav { right: 24px; left: 24px; height: 74px; }
  .hero-nav nav { display: none; }
  .hero-menu { width: auto; border: 0; }
  .hero-content { top: 100px; right: 24px; bottom: 40px; left: 24px; }
  .hero-copy-real { top: 0; left: 0; max-width: 100%; }
  .hero-copy-real h1 { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-copy-real > p:not(.hero-eyebrow) { font-size: 1rem; }
  .hero-art { top: 45%; right: -18%; width: 125%; height: 58%; }
  .hero-art img { left: -35%; width: 165%; }
  .hero-art svg { width: 100%; height: 100%; }
  .hero-footer-real { display: none; }
}

/* Definitive logo placement — must remain last to override legacy hero image rules. */
.hero-art.hero-art--logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: block;
  width: 52%;
  height: 100%;
  overflow: visible;
}

.hero-art.hero-art--logo > img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(440px, 44vw, 680px);
  min-width: 440px;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

@media (max-width: 820px) {
  .hero-art.hero-art--logo { top: 46%; right: 0; bottom: auto; width: 100%; height: 44%; }
  .hero-art.hero-art--logo > img { top: 50%; left: 50%; width: 360px; min-width: 360px; max-width: 360px; }
}

/* Final precedence for the supplied CAESTOL logo and reference background. */
.approved-hero { background: #000; }
.hero-logo { display: block; width: clamp(170px, 15.5vw, 260px); height: auto; line-height: 0; letter-spacing: 0; font-size: 0; }
.hero-logo img { display: block; width: 100%; height: auto; }
.hero-nav { align-items: flex-start; padding-top: 14px; }
.hero-nav nav { padding-top: clamp(12px, 1vw, 17px); }
.hero-menu { margin-top: 8px; }
.site-footer .wordmark-mark { display: none; }

@media (max-width: 820px) {
  .hero-logo { width: 145px; }
  .hero-nav { padding-top: 10px; }
}

@media (max-width: 520px) {
  .wordmark {
    gap: 8px;
    font-size: 0.88rem;
    letter-spacing: 0.32em;
  }

  .wordmark-mark {
    width: 21px;
    height: 21px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 9px;
  }

  .hero h1 br,
  .contact-section h2 br {
    display: none;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .visual-frame,
  .visual-frame img {
    aspect-ratio: 0.94;
  }

  .visual-readout {
    right: 15px;
    left: 15px;
    font-size: 0.75rem;
  }

  .section h2 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
  }

  .system-card:nth-child(n) {
    grid-column: span 6;
    min-height: 380px;
  }

  .system-card:nth-child(-n + 2) {
    min-height: 420px;
  }

  .system-card__body {
    padding: 28px 24px 22px;
  }

  .system-card__body h3,
  .system-card:nth-child(n + 3) .system-card__body h3 {
    font-size: 2.05rem;
  }

  .capability-row {
    padding: 24px 0;
    gap: 13px;
  }

  .capability-row h3 {
    font-size: 1.35rem;
  }

  .lab-copy {
    padding: 40px 24px 28px;
  }

  .lab-section {
    min-height: 750px;
  }

  .lab-visual {
    min-height: 750px;
  }

  .lab-core {
    width: 64px;
    height: 64px;
  }

  .lab-stamp {
    font-size: 0.75rem;
  }

  .contact-section h2 {
    font-size: clamp(3.05rem, 15vw, 5.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Rebuilt CAESTOL hero: all visible content is real HTML/CSS, with no rasterized project labels. */
.site-header {
  display: none;
}

.approved-hero {
  position: relative;
  width: 100%;
  min-height: min(760px, 100vh);
  overflow: hidden;
  background: radial-gradient(circle at 73% 45%, rgba(19, 73, 61, .3), transparent 24%), linear-gradient(120deg, #030607 0%, #07100e 49%, #05090b 100%);
}

.approved-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(120, 190, 167, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(120, 190, 167, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 92%);
  opacity: .4;
}

.hero-nav, .hero-content, .hero-footer-real {
  position: absolute;
  z-index: 2;
}

.hero-nav { top: 0; right: clamp(24px, 5vw, 76px); left: clamp(24px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; height: 86px; border-bottom: 1px solid rgba(190, 213, 205, .14); }
.hero-logo, .hero-nav nav, .hero-contact, .hero-footer-real { font-size: .73rem; letter-spacing: .14em; text-transform: uppercase; }
.hero-logo { display: flex; align-items: center; gap: 10px; color: #f2f5f1; font-weight: 600; }
.hero-logo-mark { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid #7a8b84; border-radius: 50%; color: #dce9e1; font-family: Georgia, serif; font-size: 1.1rem; letter-spacing: 0; }
.hero-nav nav { display: flex; gap: clamp(18px, 3vw, 48px); color: #a9bbb5; }
.hero-nav a:hover { color: #e7f5ee; }
.hero-contact { color: #e2efe9; }
.hero-contact span, .hero-actions-real span { color: #56e0ae; }
.hero-content { top: 86px; right: clamp(24px, 8vw, 140px); bottom: 100px; left: clamp(24px, 8vw, 140px); display: flex; align-items: center; justify-content: space-between; gap: 5vw; }
.hero-copy-real { max-width: 610px; }
.hero-eyebrow { margin: 0 0 25px; color: #57d8aa; font-size: .76rem; letter-spacing: .2em; }
.hero-copy-real h1 { margin: 0; color: #e9f1ed; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3.7rem, 7.3vw, 8.5rem); font-weight: 400; letter-spacing: -.07em; line-height: .9; }
.hero-copy-real h1 em { color: #9faeaa; font-style: normal; }
.hero-copy-real > p:not(.hero-eyebrow) { max-width: 420px; margin: 34px 0 0; color: #b0c1bb; font-size: 1.08rem; line-height: 1.6; }
.hero-actions-real { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button--ghost { border: 1px solid rgba(225, 240, 233, .25); color: #e2efe9; }
.hero-orb { position: relative; width: min(38vw, 480px); aspect-ratio: 1; flex: 0 0 auto; border: 1px solid rgba(100, 230, 180, .2); border-radius: 50%; box-shadow: 0 0 80px rgba(20, 178, 125, .11), inset 0 0 60px rgba(20, 178, 125, .08); transform: rotate(-12deg); }
.hero-orb::before, .hero-orb::after { position: absolute; inset: 11%; border: 1px solid rgba(165, 195, 185, .38); border-radius: 46% 54% 55% 45%; content: ""; transform: rotate(37deg) skew(-7deg); }
.hero-orb::after { inset: 22%; border-color: rgba(79, 219, 167, .55); transform: rotate(-26deg) skew(8deg); }
.hero-orb-ring { position: absolute; inset: 32%; border: 2px solid #b8d0c7; border-radius: 47% 53% 55% 45%; transform: rotate(45deg); }
.hero-orb-ring--inner { inset: 38%; border-color: #3ce09f; transform: rotate(-45deg); }
.hero-orb-core { position: absolute; inset: 43%; background: linear-gradient(135deg, #9df4cf, #197b5d 52%, #06100e); clip-path: polygon(50% 0, 100% 22%, 82% 80%, 48% 100%, 0 72%, 18% 18%); box-shadow: 0 0 40px #36d29b; }
.hero-orb-glint { position: absolute; top: 25%; right: 24%; width: 7px; height: 7px; border-radius: 50%; background: #d5fff0; box-shadow: 0 0 24px 8px #55e8ae; }
.hero-footer-real { right: clamp(24px, 5vw, 76px); bottom: 28px; left: clamp(24px, 5vw, 76px); display: flex; justify-content: space-between; color: #71847e; font-size: .62rem; letter-spacing: .15em; }

.approved-mask, .approved-hotspot { display: none; }

/* Retained only for backwards compatibility with old markup; no image is rendered. */
.approved-hero > img { display: none; }
.approved-mask strong {
}

.approved-mask span {
  margin-top: 6px;
  color: #b6c0bf;
  font-size: clamp(0.72rem, 0.9vw, 0.94rem);
  line-height: 1.25;
}

.approved-mask--one {
  top: 80.7%;
  left: 5.8%;
  width: 33%;
  height: 10.5%;
}

.approved-mask--two {
  top: 80.7%;
  left: 52.2%;
  width: 34%;
  height: 10.5%;
  border-left-color: rgba(24, 189, 141, 0.35);
  background: linear-gradient(90deg, rgba(5, 9, 12, 0.98), rgba(5, 9, 12, 0.94) 75%, rgba(5, 9, 12, 0));
}

.approved-hotspot {
  position: absolute;
  z-index: 5;
  display: block;
}

.approved-hotspot:focus-visible {
  outline: 2px solid var(--green-hi);
  outline-offset: 3px;
}

.approved-hotspot--products { top: 2.5%; left: 51.6%; width: 7.5%; height: 5%; }
.approved-hotspot--capabilities { top: 2.5%; left: 60.3%; width: 8.8%; height: 5%; }
.approved-hotspot--lab { top: 2.5%; left: 71%; width: 10.7%; height: 5%; }
.approved-hotspot--company { top: 2.5%; left: 83.2%; width: 7.2%; height: 5%; }
.approved-hotspot--explore { top: 54.9%; left: 4.8%; width: 15.5%; height: 6.4%; }
.approved-hotspot--build { top: 54.9%; left: 21.6%; width: 17%; height: 6.4%; }

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 18px;
    left: 18px;
    display: grid;
    width: auto;
    border-bottom: 0;
  }

  .approved-hero { min-height: 720px; }
  .hero-nav nav { display: none; }
  .hero-contact { font-size: .61rem; }
  .hero-content { top: 120px; right: 24px; bottom: 80px; left: 24px; display: block; }
  .hero-copy-real h1 { font-size: clamp(3.6rem, 15vw, 6rem); }
  .hero-copy-real > p:not(.hero-eyebrow) { font-size: .98rem; }
  .hero-orb { width: min(72vw, 360px); margin: 48px auto 0; }
  .hero-footer-real { display: none; }
}

/* Absolute final logo placement. */
.hero-art.hero-art--logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: block;
  width: 52%;
  height: 100%;
  overflow: visible;
}

.hero-art.hero-art--logo > img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: clamp(440px, 44vw, 680px);
  min-width: 440px;
  max-width: 680px;
  height: auto;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

@media (max-width: 820px) {
  .hero-art.hero-art--logo { top: 46%; right: 0; bottom: auto; width: 100%; height: 44%; }
  .hero-art.hero-art--logo > img { top: 50%; left: 50%; width: 360px; min-width: 360px; max-width: 360px; }
}
