/* OdyLonj Cloud — public editorial surface. Private UI uses style.css. */
.line-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.experiment-icon .line-icon {
  width: 30px;
  height: 30px
}

@font-face {
  font-family: Manrope;
  src: url("manrope-latin.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap
}

:root {
  color-scheme: dark;
  --bg: #111617;
  --panel: #191f20;
  --text: #f0ede7;
  --muted: #a8b0ae;
  --line: #343c3c;
  --peach: #ffc79e;
  --accent: var(--peach);
  --font: Manrope, Arial, Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased
}

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

button,
summary {
  font: inherit
}

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

h1,
h2,
h3 {
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -.055em
}

em {
  font-style: normal;
  color: var(--peach)
}

::selection {
  background: #ffc79e;
  color: #111617
}

svg {
  display: block
}

a,
summary {
  touch-action: manipulation
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 6px;
  border-radius: 3px
}

main:focus {
  outline: 0
}

.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto
}

.section-space {
  padding-block: 118px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 11px/1.6 var(--mono);
  letter-spacing: .14em;
  color: #b9c0b9
}

.muted-word {
  color: #979f99
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  background: var(--peach);
  color: #111617;
  padding: 12px 20px;
  transform: translateY(-150%)
}

.skip-link:focus {
  transform: none
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(17, 22, 23, .96);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px)
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 94px
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.055em;
  white-space: nowrap
}

.wordmark-light {
  font-weight: 400;
  color: #c2c8c3
}

.brand-symbol {
  width: 32px;
  height: 36px;
  fill: none;
  stroke: var(--peach);
  stroke-width: 1.6
}

.main-nav {
  display: flex;
  gap: 34px;
  font-size: 13px
}

.main-nav a {
  padding: 12px 0;
  color: #c2c6c2;
  transition: color .2s
}

.main-nav a:hover {
  color: var(--peach)
}

.private-entry {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #b7bfba;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 12px
}

.private-entry:hover {
  color: var(--text);
  border-color: #6f7a73
}

.private-entry svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 24px;
  min-height: 682px;
  align-items: center;
  padding-block: 65px 68px
}

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

.small-orbit {
  width: 8px;
  height: 8px;
  border: 1px solid var(--peach);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ffc79e12
}

.hero h1 {
  font-size: clamp(50px, 5.9vw, 86px);
  line-height: 1.05;
  margin: 31px 0 26px;
  letter-spacing: -.069em;
  font-weight: 550
}

.hero-name {
  display: block;
  font-size: 13px;
  letter-spacing: .015em;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 15px
}

.hero-intro {
  font-size: 18px;
  line-height: 1.7;
  color: #bfc6c0;
  max-width: 470px;
  letter-spacing: -.02em
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 30px
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 650;
  transition: background .2s, transform .2s
}

.button-primary {
  background: var(--peach);
  color: #202323
}

.button-primary:hover {
  background: #ffdbbf;
  transform: translateY(-2px)
}

.button span[aria-hidden] {
  font-size: 20px;
  line-height: 1
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  padding: 10px 0
}

.text-link:hover {
  color: var(--peach)
}

.hero-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 43px
}

.profile-monogram {
  border: 1px solid #4b544a;
  border-radius: 50%;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  color: var(--peach);
  background: #212825
}

.hero-profile p {
  font-size: 11px;
  line-height: 1.7
}

.hero-profile strong {
  font-weight: 600;
  display: block
}

.hero-profile p>span {
  color: var(--muted)
}

.hero-world {
  min-width: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px
}

.world-caption,
.world-footer {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font: 9px/1.6 var(--mono);
  letter-spacing: .06em;
  color: #a4ada5
}

.world-caption {
  padding: 0 4px 12px;
  border-bottom: 1px solid #343c3c80
}

.world-caption>span:first-child {
  max-width: 75%
}

.orbit-map {
  position: relative;
  aspect-ratio: 600/520;
  margin: 3px -5px;
  background-image: radial-gradient(#a7ae9626 .8px, transparent .8px);
  background-size: 22px 22px
}

.orbit-wires {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: visible
}

.map-rings {
  fill: none;
  stroke: #a2afa5;
  stroke-opacity: .13;
  stroke-width: .8
}

.map-rings path {
  stroke-dasharray: 2 8
}

.map-connections {
  stroke: #bdbaa0;
  stroke-opacity: .48;
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  transition: stroke-opacity .3s
}

.map-points {
  fill: #ffc79e
}

.is-exploring .map-connections {
  stroke-opacity: 1
}

.core-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  border: 1px solid #676458;
  border-radius: 20px;
  background: linear-gradient(140deg, #383c32, #1c2423 70%);
  box-shadow: 0 15px 60px #0004, 0 0 40px #ffc79e08;
  transition: box-shadow .3s
}

.core-node:hover {
  box-shadow: 0 15px 60px #0004, 0 0 45px #ffc79e18
}

.core-cube {
  display: block;
  width: 50px;
  margin-bottom: 10px
}

.core-cube svg {
  width: 100%;
  fill: #ffc79e06;
  stroke: #ffc79e;
  stroke-width: 1.5
}

.core-node strong {
  font-size: 15px;
  letter-spacing: -.03em
}

.core-node>span:nth-last-child(2) {
  font: 8px var(--mono);
  color: #bfbaaa;
  letter-spacing: .15em;
  margin-top: 7px
}

.core-node .core-discover {
  position: absolute;
  bottom: -35px;
  font: 9px var(--mono);
  width: 200px;
  text-align: center;
  color: #bfc0ae
}

.satellite {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(125deg, #252c2a, #191f20);
  padding: 13px 14px;
  border: 1px solid #4a554b;
  border-radius: 7px;
  box-shadow: 0 12px 25px #0003;
  transition: transform .25s, border-color .25s
}

.satellite:hover {
  transform: translateY(-4px);
  border-color: var(--peach)
}

.satellite strong {
  display: block;
  font-size: 11px;
  letter-spacing: -.03em
}

.satellite small {
  display: block;
  font-size: 8px;
  margin-top: 3px;
  color: #b6bcb3;
  white-space: nowrap
}

.satellite>span:last-child {
  font-size: 13px;
  color: #b7beae
}

.node-icon {
  width: 26px;
  height: 28px;
  border: 1px solid #4d584a;
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #e3d3b4;
  font-family: var(--mono);
  font-size: 17px
}

.satellite-photo {
  top: 15%;
  left: 1%
}

.satellite-code {
  top: 21%;
  right: 0
}

.satellite-dmx {
  bottom: 21%;
  left: 0
}

.satellite-remote {
  bottom: 10%;
  right: 1%
}

.world-footer {
  border-top: 1px solid #343c3c80;
  padding-top: 14px;
  font-size: 8px
}

.dot-label {
  display: flex;
  align-items: center;
  gap: 7px
}

.dot-label i {
  width: 4px;
  height: 4px;
  background: #c0cda9;
  border-radius: 50%
}

.discipline-strip {
  border-block: 1px solid var(--line)
}

.discipline-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 22px;
  font: 11px var(--mono);
  letter-spacing: .12em;
  color: #b4bcb5
}

.discipline-strip i {
  font-style: normal;
  color: #626d63
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 45px;
  margin-bottom: 47px
}

.section-heading h2 {
  font-size: clamp(36px, 4vw, 58px);
  margin-top: 20px;
  line-height: 1.12
}

.section-heading>p {
  font-size: 14px;
  color: var(--muted);
  max-width: 390px;
  margin-bottom: 5px
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px
}

.accent-peach {
  --accent: #ffc79e;
  --accent-rgb: 255, 199, 158
}

.accent-blue {
  --accent: #a6c7df;
  --accent-rgb: 166, 199, 223
}

.accent-mint {
  --accent: #bdd9c2;
  --accent-rgb: 189, 217, 194
}

.accent-lilac {
  --accent: #c6b9e0;
  --accent-rgb: 198, 185, 224
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--panel);
  transition: border-color .25s
}

.project-card:hover {
  border-color: #748078
}

.project-card-link {
  display: block;
  height: 100%
}

.project-card-link:focus-visible {
  outline-offset: -5px
}

.project-art {
  height: 324px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(var(--accent-rgb), .09), transparent 70%), #151b1c;
  border-bottom: 1px solid var(--line)
}

.art-topline {
  position: absolute;
  top: 19px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  z-index: 1;
  font: 9px var(--mono);
  letter-spacing: .07em;
  color: #b6beb6
}

.art-topline>span:first-child {
  text-transform: uppercase
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font: 10px var(--mono);
  letter-spacing: 0;
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), .3);
  background: rgba(var(--accent-rgb), .04);
  padding: 6px 9px;
  border-radius: 30px
}

.project-status:before {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: currentColor
}

.art-caption {
  position: absolute;
  bottom: 14px;
  left: 22px;
  font: 8px var(--mono);
  letter-spacing: .09em;
  color: #a2aaa1
}

.project-card-content {
  padding: 25px 27px 26px
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px
}

.card-title-row h3 {
  font-size: 27px;
  letter-spacing: -.045em
}

.round-arrow {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid #4c554d;
  border-radius: 50%;
  color: var(--accent);
  font-size: 20px;
  transition: background .25s, color .25s, transform .25s
}

.project-card:hover .round-arrow {
  background: var(--accent);
  color: #151b1c;
  transform: rotate(45deg)
}

.project-card-content>p {
  font-size: 13px;
  color: #b6beb6;
  margin-top: 12px
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 24px;
  color: #abb4ac;
  font: 10px var(--mono)
}

.tech-list span:not(:last-child):after {
  content: "/";
  color: #626c63;
  margin-left: 16px
}

.visual {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 28px 32px;
  pointer-events: none;
  transition: transform .5s
}

.project-card:hover .visual {
  transform: translateY(-4px)
}

.cloud-stack {
  width: min(100%, 460px);
  height: 100%;
  overflow: visible
}

.stack-base {
  fill: #272d2a;
  stroke: #73806c;
  stroke-width: 1
}

.stack-middle {
  fill: #323a32;
  stroke: #b2b397;
  stroke-width: 1
}

.stack-top {
  fill: #444a3c;
  stroke: #d7c8a7;
  stroke-width: 1
}

.stack-grid {
  fill: none;
  stroke: #ddd3b0;
  stroke-opacity: .35;
  stroke-width: .6
}

.stack-links {
  fill: none;
  stroke: var(--accent);
  stroke-opacity: .4;
  stroke-dasharray: 4 5
}

.stack-ports {
  fill: #d4c39e;
  stroke: var(--accent);
  stroke-width: 1
}

.art-pill {
  position: absolute;
  font: 8px var(--mono);
  padding: 7px 11px;
  border: 1px solid #6b6d55;
  border-radius: 4px;
  background: #262e27;
  color: #dbd5bd
}

.cloud-pill {
  bottom: 32px;
  right: 28px
}

.photo-scene {
  width: 360px;
  height: 215px;
  position: relative
}

.sample-photo {
  position: absolute;
  width: 208px;
  height: 164px;
  background: #222e34;
  border: 1px solid #758a96;
  border-radius: 7px;
  padding: 8px;
  box-shadow: 0 18px 30px #0004
}

.sample-back {
  transform: rotate(-12deg);
  left: 8px;
  top: 10px;
  opacity: .6
}

.sample-front {
  transform: rotate(7deg);
  right: 10px;
  top: 36px
}

.abstract-landscape {
  position: relative;
  height: 112px;
  overflow: hidden;
  background: linear-gradient(#a6b5a5, #d3c5a3);
  border-radius: 3px
}

.abstract-landscape:before {
  content: "";
  position: absolute;
  width: 170px;
  height: 160px;
  background: #455f62;
  transform: rotate(40deg);
  top: 71px;
  left: -8px;
  box-shadow: 90px -56px 0 #708a7e
}

.abstract-landscape:after {
  content: "";
  position: absolute;
  top: 17px;
  right: 27px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5e3bd
}

.sample-back .abstract-landscape {
  height: 100%
}

.photo-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 8px var(--mono);
  padding-top: 10px;
  color: #c3d1d4
}

.photo-actions strong {
  background: #cae1c5;
  color: #213123;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 500
}

.compare-chip {
  position: absolute;
  top: 0;
  right: 0;
  color: #b6c8d5;
  font: 8px var(--mono);
  letter-spacing: .1em
}

.selection-corners {
  position: absolute;
  width: 23px;
  height: 23px;
  left: 40px;
  bottom: 12px;
  border-left: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent)
}

.signal-scene {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 0
}

.signal-input,
.signal-output {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 65px
}

.signal-input>span,
.signal-output>span {
  font: 8px var(--mono);
  color: #a8b9ad;
  letter-spacing: .1em
}

.signal-input strong,
.signal-output strong {
  font: 16px var(--mono);
  color: var(--accent)
}

.signal-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 30px
}

.signal-bars i {
  height: 10px;
  width: 3px;
  background: #90b19a
}

.signal-bars i:nth-child(2n) {
  height: 24px
}

.signal-bars i:nth-child(3n) {
  height: 17px
}

.circuit-line {
  height: 1px;
  flex: 1;
  max-width: 55px;
  background: #8aab9277;
  position: relative
}

.circuit-line:before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 45%;
  top: -1px;
  background: var(--accent);
  border-radius: 50%
}

.circuit-board {
  width: 157px;
  height: 158px;
  background: repeating-linear-gradient(90deg, transparent 0 17px, #6e9b7116 17px 18px), repeating-linear-gradient(0deg, transparent 0 17px, #6e9b7116 17px 18px), #263c30;
  border: 1px solid #86a68b;
  border-radius: 7px;
  display: grid;
  place-items: center;
  position: relative;
  transform: rotate(-7deg);
  box-shadow: 0 14px 30px #0004
}

.chip {
  width: 95px;
  height: 97px;
  background: #222b28;
  border: 1px solid #93a08c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 0 5px #56645050
}

.chip:before,
.chip:after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  height: 5px;
  background: repeating-linear-gradient(90deg, #b4b394 0 3px, transparent 3px 10px)
}

.chip:before {
  top: -10px
}

.chip:after {
  bottom: -10px
}

.chip>span {
  font: 20px var(--mono);
  letter-spacing: -.06em
}

.chip small {
  font: 8px var(--mono);
  color: #adbfaa;
  margin-top: 8px
}

.board-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #b6bb97;
  top: 7px;
  left: 7px
}

.dot-b {
  top: auto;
  left: auto;
  right: 7px;
  bottom: 7px
}

.ir-rings {
  height: 60px;
  width: 65px;
  position: relative
}

.ir-rings i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #bdd9c2;
  border-left: 0;
  border-radius: 0 100% 100% 0;
  width: 20px;
  height: 24px;
  opacity: .85
}

.ir-rings i:nth-child(2) {
  width: 35px;
  height: 40px;
  opacity: .6
}

.ir-rings i:nth-child(3) {
  width: 50px;
  height: 56px;
  opacity: .35
}

.pipeline-scene {
  width: 100%;
  max-width: 400px;
  padding-top: 10px
}

.branch-art {
  width: 100%;
  overflow: visible
}

.branch-art path {
  fill: none;
  stroke-width: 2
}

.branch-main {
  stroke: #837595
}

.branch-secondary {
  stroke: #ccbedc;
  stroke-dasharray: 5 4
}

.branch-art circle {
  fill: #27252e;
  stroke: #c6b9e0;
  stroke-width: 2
}

.pipeline-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font: 10px var(--mono);
  margin-top: 15px
}

.pipeline-steps span {
  border: 1px dashed #75687f;
  padding: 9px 14px;
  border-radius: 4px;
  color: #c5bdd0
}

.pipeline-steps i {
  font-style: normal;
  color: #a196ad
}

.pipeline-note {
  display: block;
  text-align: center;
  font: 8px var(--mono);
  letter-spacing: .15em;
  color: #b2a6c1;
  margin-top: 21px
}

.ecosystem-section {
  background: #171d1d;
  border-block: 1px solid var(--line);
  position: relative
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  margin-top: 64px
}

.label-chip {
  font: 8px var(--mono);
  letter-spacing: .08em;
  color: #bfc9b3;
  border: 1px solid #454f43;
  padding: 7px 10px;
  border-radius: 4px;
  display: inline-block
}

.ecosystem-intro h3 {
  font-size: 42px;
  line-height: 1.2;
  margin: 24px 0
}

.ecosystem-intro>p {
  font-size: 14px;
  color: var(--muted);
  max-width: 315px;
  margin-bottom: 18px
}

.ecosystem-root {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #646657;
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(120deg, #31362b, #202825);
  position: relative;
  margin-bottom: 25px
}

.root-mark {
  font-size: 30px;
  color: #d2d7b6
}

.ecosystem-root strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.04em
}

.ecosystem-root>span:last-child {
  margin-left: auto;
  font: 8px/1.5 var(--mono);
  color: #c3c8b6;
  max-width: 120px;
  letter-spacing: .07em
}

.branch-list {
  margin-left: 26px;
  padding-left: 30px;
  border-left: 1px solid #4b5645
}

.ecosystem-branch {
  border: 1px solid #3c4840;
  border-radius: 6px;
  background: #1c2421;
  position: relative;
  margin-bottom: 13px
}

.ecosystem-branch:before {
  content: "";
  position: absolute;
  left: -31px;
  top: 31px;
  width: 30px;
  border-top: 1px solid #4b5645
}

.ecosystem-branch summary {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none
}

.ecosystem-branch summary::-webkit-details-marker {
  display: none
}

.branch-number {
  font: 9px var(--mono);
  color: #b4c0a6
}

.ecosystem-branch summary strong {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -.02em
}

.branch-plus {
  margin-left: auto;
  color: #c0c8b6;
  font-size: 23px;
  line-height: 1;
  transition: transform .2s
}

.ecosystem-branch[open] .branch-plus {
  transform: rotate(45deg)
}

.ecosystem-branch>div {
  padding: 0 22px 23px 54px
}

.ecosystem-branch p {
  font-size: 12px;
  line-height: 1.8;
  color: #b3bdb1
}

.ecosystem-branch>div a {
  font-size: 11px;
  color: #d4dec8;
  display: inline-block;
  margin-top: 13px;
  padding: 5px 0
}

.ecosystem-note {
  font: 9px/1.8 var(--mono);
  color: #a2af9e;
  margin: 22px 0 0 56px
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px 80px
}

.about-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 25px 0
}

.about-study {
  font: 9px var(--mono);
  letter-spacing: .1em;
  border-left: 2px solid var(--peach);
  padding-left: 12px;
  color: #c9c8b9
}

.about-copy .large-copy {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -.04em;
  color: var(--text);
  max-width: 460px;
  margin-bottom: 24px
}

.about-copy>p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 15px
}

.practice-grid {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 32px;
  gap: 40px
}

.practice-grid>div:not(:last-child) {
  border-right: 1px solid var(--line);
  padding-right: 35px
}

.practice-grid>div>span {
  font: 9px var(--mono);
  letter-spacing: .08em;
  color: var(--peach)
}

.practice-grid h3 {
  font-size: 19px;
  letter-spacing: -.03em;
  margin-top: 17px
}

.practice-grid p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 13px
}

.experiments-section {
  border: 1px solid var(--line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
  padding: 45px;
  background: #181e1f
}

.experiment-label h2 {
  font-size: 34px;
  margin-top: 25px
}

.experiment-items {
  min-width: 0
}

.experiment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px
}

.experiment-row+.experiment-row {
  border-top: 1px solid var(--line);
  margin-top: 27px;
  padding-top: 27px
}

.work-status {
  font: 9px var(--mono);
  color: #c6b9e0;
  letter-spacing: .09em
}

.experiment-row h3 {
  font-size: 20px;
  letter-spacing: -.03em;
  margin: 9px 0 12px
}

.experiment-row p {
  font-size: 12px;
  color: var(--muted);
  max-width: 450px
}

.experiment-row>span {
  color: var(--peach);
  font-size: 24px
}

.experiment-row:hover h3 {
  color: var(--peach)
}

.experiment-icon {
  opacity: .8
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 120px 130px
}

.contact-section h2 {
  font-size: clamp(42px, 5vw, 70px);
  margin: 23px 0 30px;
  position: relative;
  z-index: 1
}

.contact-section .button,
.contact-section .eyebrow {
  position: relative;
  z-index: 1
}

.contact-watermark {
  position: absolute;
  font-weight: 500;
  font-size: 430px;
  letter-spacing: -.13em;
  line-height: 1;
  right: 40px;
  top: 25px;
  color: #20282a;
  user-select: none
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px 20px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--line)
}

.site-footer>.wordmark {
  font-size: 17px;
  gap: 5px
}

.site-footer>p {
  font-size: 11px;
  color: var(--muted);
  text-align: center
}

.site-footer>div {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 11px
}

.site-footer>div a:hover {
  color: var(--peach)
}

.site-footer>div span[aria-hidden] {
  margin-left: 8px
}

.footer-signature {
  grid-column: 1/-1;
  text-align: center;
  font: 8px var(--mono);
  letter-spacing: .12em;
  color: #a1aaa3
}

.project-page {
  padding-top: 34px
}

.breadcrumbs {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  font: 10px var(--mono);
  color: #afb7b1
}

.breadcrumbs a {
  padding-block: 10px
}

.breadcrumbs a:hover {
  color: var(--peach)
}

.breadcrumbs>span {
  padding-block: 10px
}

.breadcrumbs>span[aria-hidden] {
  color: #647067
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px
}

.project-header h1 {
  font-size: clamp(46px, 6vw, 86px);
  margin: 24px 0;
  color: var(--accent)
}

.project-header>.project-status {
  margin-top: 52px
}

.project-tagline {
  font-size: 25px;
  letter-spacing: -.03em
}

.project-lead {
  margin-block: 28px 45px;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: flex-start
}

.project-lead>p {
  max-width: 670px;
  color: var(--muted);
  font-size: 15px
}

.project-lead .tech-list {
  justify-content: flex-end;
  max-width: 340px;
  margin-top: 6px
}

.project-cover {
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 50%, rgba(var(--accent-rgb), .12), transparent 65%), #171e1e
}

.cover-art {
  height: 400px;
  position: relative;
  max-width: 680px;
  margin: auto
}

.cover-art .visual {
  padding-top: 35px;
  padding-bottom: 30px
}

.cover-art .cloud-stack {
  max-width: 620px;
  width: 100%
}

.cover-art .photo-scene {
  transform: scale(1.35)
}

.cover-art .signal-scene {
  max-width: 560px
}

.cover-art .circuit-board {
  width: 190px;
  height: 190px
}

.cover-art .pipeline-scene {
  max-width: 500px
}

.cover-art .cloud-pill {
  bottom: 35px;
  right: 22px
}

.project-cover figcaption {
  border-top: 1px solid var(--line);
  padding: 13px 22px;
  font: 10px/1.7 var(--mono);
  color: #b0bab2
}

.case-study {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 85px;
  padding-block: 85px 45px
}

.case-index {
  align-self: start;
  position: sticky;
  top: 130px
}

.case-index nav {
  display: flex;
  flex-direction: column;
  margin-top: 22px
}

.case-index nav a {
  font-size: 12px;
  color: #b9c2b9;
  padding-block: 9px
}

.case-index nav a:hover {
  color: var(--accent)
}

.case-sections section {
  margin-bottom: 65px
}

.case-sections h2 {
  font-size: 34px;
  margin: 17px 0 25px
}

.case-sections p:not(.eyebrow) {
  color: #b9c2b9;
  font-size: 15px;
  line-height: 1.9;
  max-width: 780px
}

.architecture-steps {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.architecture-steps li {
  position: relative;
  border: 1px solid var(--line);
  padding: 18px 15px;
  border-radius: 5px;
  background: #1a2221
}

.architecture-steps li>span {
  font: 10px var(--mono);
  color: var(--accent);
  display: block;
  margin-bottom: 14px
}

.architecture-steps strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  display: block
}

.architecture-steps li:not(:last-child):after {
  content: "→";
  position: absolute;
  top: 45%;
  right: -10px;
  z-index: 1;
  background: var(--bg);
  color: var(--accent);
  font: 12px var(--mono)
}

.decision-list>div {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-block: 26px
}

.decision-list>div>span {
  font: 10px var(--mono);
  color: var(--accent);
  padding-top: 6px
}

.decision-list h3 {
  font-size: 21px;
  letter-spacing: -.035em;
  margin-bottom: 12px
}

.learning-note {
  padding: 25px 30px;
  border-left: 2px solid var(--accent);
  background: #1b2322;
  margin-block: 26px
}

.learning-note h3 {
  font-size: 18px;
  letter-spacing: -.02em;
  margin-bottom: 10px
}

.next-project {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 38px 85px
}

.next-project>div>a {
  display: block;
  font-size: 34px;
  letter-spacing: -.04em;
  margin-top: 15px
}

.next-project>div>a>span {
  color: var(--peach);
  display: inline-block;
  margin-left: 20px
}

.next-project>div>a:hover {
  color: var(--peach)
}

@keyframes card-arrive {
  from {
    transform: translateY(12px)
  }

  to {
    transform: translateY(0)
  }
}

@media(prefers-reduced-motion:no-preference) {
  .project-card.is-visible {
    animation: card-arrive .6s ease-out both
  }
}

@media(min-width:1550px) {
  .hero {
    min-height: 740px;
    gap: 48px
  }

  .hero h1 {
    font-size: 90px
  }

  .hero-world {
    padding-top: 0
  }
}

@media(max-width:1100px) {
  .container {
    width: calc(100% - 64px)
  }

  .nav-wrap {
    min-height: 82px
  }

  .main-nav {
    gap: 20px
  }

  .hero {
    gap: 15px;
    min-height: 600px;
    padding-block: 48px
  }

  .hero h1 {
    font-size: 65px
  }

  .hero-intro {
    font-size: 16px
  }

  .hero-actions {
    gap: 18px
  }

  .hero-actions .button {
    gap: 20px;
    padding: 13px 16px
  }

  .hero-actions .text-link {
    font-size: 12px
  }

  .satellite {
    padding: 11px 10px;
    gap: 7px
  }

  .satellite small {
    font-size: 7px
  }

  .satellite strong {
    font-size: 10px
  }

  .node-icon {
    width: 22px;
    height: 26px;
    font-size: 14px
  }

  .core-node {
    width: 148px;
    height: 155px
  }

  .satellite-photo {
    left: 0;
    top: 9%
  }

  .satellite-code {
    top: 26%
  }

  .satellite-dmx {
    bottom: 23%
  }

  .satellite-remote {
    bottom: 6%
  }

  .world-caption {
    font-size: 8px
  }

  .world-footer {
    font-size: 7px
  }

  .section-space {
    padding-block: 90px
  }

  .art-topline {
    font-size: 8px;
    left: 18px;
    right: 18px
  }

  .project-art {
    height: 290px
  }

  .project-status {
    font-size: 8px;
    padding: 5px 7px
  }

  .project-card-content {
    padding: 23px
  }

  .ecosystem-layout {
    gap: 45px
  }

  .ecosystem-intro h3 {
    font-size: 36px
  }

  .ecosystem-root {
    padding: 16px;
    gap: 10px
  }

  .ecosystem-root>span:last-child {
    max-width: 88px;
    font-size: 7px
  }

  .ecosystem-root strong {
    font-size: 16px
  }

  .about-section {
    gap: 40px
  }

  .experiments-section {
    gap: 35px;
    padding: 35px
  }

  .practice-grid {
    gap: 25px
  }

  .practice-grid>div:not(:last-child) {
    padding-right: 23px
  }

  .case-study {
    gap: 45px;
    grid-template-columns: 190px 1fr
  }

  .architecture-steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .architecture-steps li:nth-child(2):after {
    content: none
  }
}

@media(max-width:850px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 15px
  }

  .hero h1 {
    font-size: 52px
  }

  .hero .eyebrow {
    font-size: 8px
  }

  .hero-name {
    font-size: 11px
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px
  }

  .hero-intro {
    font-size: 15px
  }

  .hero-profile {
    margin-top: 23px
  }

  .core-node {
    width: 120px;
    height: 136px;
    border-radius: 15px
  }

  .core-cube {
    width: 39px
  }

  .core-node strong {
    font-size: 13px
  }

  .core-node>span:nth-last-child(2) {
    font-size: 7px
  }

  .core-node .core-discover {
    font-size: 8px;
    bottom: -29px
  }

  .node-icon {
    display: none
  }

  .satellite {
    padding: 10px
  }

  .satellite-photo {
    top: 8%;
    left: 0
  }

  .satellite-code {
    top: 27%;
    right: 0
  }

  .satellite-dmx {
    bottom: 23%;
    left: 0
  }

  .satellite-remote {
    bottom: 4%;
    right: 0
  }

  .hero-world {
    padding-block: 25px 15px
  }

  .world-caption>span:last-child {
    display: none
  }

  .world-caption>span:first-child {
    max-width: none
  }

  .world-footer>span:last-child {
    display: none
  }

  .discipline-strip .container {
    font-size: 9px
  }

  .project-grid {
    gap: 18px
  }

  .project-art {
    height: 260px
  }

  .art-topline {
    flex-wrap: wrap;
    gap: 8px
  }

  .photo-scene {
    transform: scale(.8);
    min-width: 290px
  }

  .signal-input,
  .signal-output {
    min-width: 42px
  }

  .signal-input strong,
  .signal-output strong {
    font-size: 14px
  }

  .circuit-board {
    width: 125px;
    height: 135px
  }

  .chip {
    width: 78px;
    height: 80px
  }

  .signal-output .ir-rings {
    width: 47px
  }

  .ir-rings i:nth-child(3) {
    width: 44px
  }

  .pipeline-steps span {
    padding: 8px;
    font-size: 8px
  }

  .project-card-content {
    padding: 20px
  }

  .card-title-row h3 {
    font-size: 23px
  }

  .project-card-content>p {
    font-size: 12px
  }

  .project-card-content .tech-list {
    font-size: 9px;
    gap: 8px
  }

  .tech-list span:not(:last-child):after {
    margin-left: 9px
  }

  .ecosystem-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 28px
  }

  .ecosystem-intro h3 {
    font-size: 30px
  }

  .ecosystem-root {
    flex-wrap: wrap;
    gap: 7px
  }

  .ecosystem-root>span:last-child {
    margin-left: 36px;
    max-width: none;
    flex-basis: 100%
  }

  .ecosystem-branch summary {
    padding: 17px 15px;
    gap: 10px
  }

  .ecosystem-branch summary strong {
    font-size: 13px
  }

  .ecosystem-branch>div {
    padding: 0 15px 20px 15px
  }

  .branch-list {
    margin-left: 18px;
    padding-left: 20px
  }

  .ecosystem-branch:before {
    left: -21px;
    width: 20px
  }

  .ecosystem-note {
    margin-left: 38px;
    font-size: 8px
  }

  .label-chip {
    font-size: 7px
  }

  .about-copy .large-copy {
    font-size: 24px
  }

  .practice-grid h3 {
    font-size: 17px
  }

  .experiments-section {
    grid-template-columns: .8fr 1.2fr;
    gap: 28px
  }

  .experiment-label h2 {
    font-size: 29px
  }

  .experiment-row {
    gap: 12px
  }

  .experiment-row h3 {
    font-size: 18px
  }

  .project-header h1 {
    font-size: 56px
  }

  .case-study {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px
  }

  .case-index {
    position: static
  }

  .case-index nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 10px
  }

  .project-lead {
    flex-direction: column;
    gap: 18px
  }

  .project-lead .tech-list {
    justify-content: flex-start;
    max-width: none
  }

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

  .site-footer>p {
    grid-column: 1/-1;
    grid-row: 2;
    text-align: left
  }

  .footer-signature {
    text-align: left
  }

  .contact-watermark {
    font-size: 330px;
    right: 0;
    top: 60px
  }
}

@media(max-width:640px) {
  html {
    scroll-padding-top: 112px
  }

  .container {
    width: calc(100% - 40px)
  }

  .nav-wrap {
    flex-wrap: wrap;
    min-height: 96px;
    gap: 0;
    padding-block: 12px 0
  }

  .wordmark {
    font-size: 19px;
    gap: 8px
  }

  .brand-symbol {
    width: 25px;
    height: 30px
  }

  .private-entry {
    font-size: 10px;
    padding: 6px 8px
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
    font-size: 11px;
    gap: 10px;
    padding-top: 7px
  }

  .main-nav a {
    padding: 9px 0
  }

  .hero {
    display: block;
    padding-top: 43px;
    padding-bottom: 30px
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .08em
  }

  .hero h1 {
    font-size: clamp(45px, 10.8vw, 67px);
    margin: 25px 0 20px;
    letter-spacing: -.065em
  }

  .hero-name {
    font-size: 11px;
    margin-bottom: 13px
  }

  .hero-intro {
    font-size: 15px;
    max-width: 340px
  }

  .desktop-break {
    display: none
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 25px;
    margin-top: 24px
  }

  .hero-actions .button {
    font-size: 12px;
    padding: 12px 15px;
    gap: 15px
  }

  .hero-actions .text-link {
    font-size: 12px
  }

  .hero-profile {
    margin-top: 26px
  }

  .hero-world {
    margin-top: 38px;
    padding: 0
  }

  .world-caption {
    font-size: 8px;
    padding-bottom: 10px
  }

  .world-caption>span:last-child {
    display: block
  }

  .world-caption>span:first-child {
    max-width: 75%
  }

  .orbit-map {
    max-width: 460px;
    margin: 10px auto;
    width: 100%;
    min-height: 300px
  }

  .core-node {
    width: 137px;
    height: 142px
  }

  .core-cube {
    width: 42px
  }

  .core-node strong {
    font-size: 13px
  }

  .satellite {
    padding: 11px 12px
  }

  .satellite strong {
    font-size: 10px
  }

  .satellite small {
    font-size: 7px
  }

  .satellite-photo {
    top: 9%;
    left: 0
  }

  .satellite-code {
    top: 25%;
    right: 0
  }

  .satellite-dmx {
    bottom: 22%;
    left: 0
  }

  .satellite-remote {
    bottom: 4%;
    right: 0
  }

  .world-footer {
    font-size: 8px
  }

  .world-footer>span:last-child {
    display: block
  }

  .discipline-strip .container {
    padding-block: 18px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px 15px;
    font-size: 8px;
    letter-spacing: .08em
  }

  .discipline-strip i {
    font-size: 10px
  }

  .section-space {
    padding-block: 65px
  }

  .section-heading {
    display: block;
    margin-bottom: 28px
  }

  .section-heading h2 {
    font-size: 38px;
    margin-top: 16px
  }

  .section-heading>p {
    font-size: 12px;
    margin-top: 20px
  }

  .eyebrow {
    font-size: 9px
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .project-art {
    height: 280px
  }

  .art-topline {
    top: 18px;
    left: 20px;
    right: 20px;
    flex-wrap: nowrap;
    font-size: 8px
  }

  .project-status {
    font-size: 8px
  }

  .visual {
    padding: 57px 20px 30px
  }

  .photo-scene {
    transform: scale(.9)
  }

  .project-card-content {
    padding: 21px
  }

  .card-title-row h3 {
    font-size: 26px
  }

  .project-card-content>p {
    font-size: 12px
  }

  .project-card-content .tech-list {
    font-size: 9px;
    gap: 8px 15px;
    margin-top: 20px
  }

  .tech-list span:not(:last-child):after {
    margin-left: 14px
  }

  .circuit-board {
    width: 145px;
    height: 147px
  }

  .chip {
    width: 90px;
    height: 91px
  }

  .signal-input,
  .signal-output {
    min-width: 55px
  }

  .pipeline-steps span {
    padding: 8px 11px
  }

  .ecosystem-layout {
    display: block;
    margin-top: 35px
  }

  .ecosystem-intro h3 {
    font-size: 32px;
    margin: 22px 0
  }

  .ecosystem-intro h3 br:nth-child(2) {
    display: none
  }

  .ecosystem-intro>p {
    max-width: none;
    font-size: 13px
  }

  .ecosystem-branches {
    margin-top: 35px
  }

  .ecosystem-root {
    flex-wrap: nowrap;
    padding: 20px
  }

  .ecosystem-root strong {
    font-size: 18px
  }

  .ecosystem-root>span:last-child {
    margin-left: auto;
    max-width: 100px;
    flex-basis: auto;
    font-size: 8px
  }

  .branch-list {
    padding-left: 24px;
    margin-left: 23px
  }

  .ecosystem-branch:before {
    left: -25px;
    width: 24px
  }

  .ecosystem-branch summary {
    padding: 18px 16px
  }

  .ecosystem-branch summary strong {
    font-size: 14px
  }

  .ecosystem-branch>div {
    padding: 0 18px 20px 18px
  }

  .ecosystem-note {
    margin-left: 48px;
    font-size: 9px
  }

  .about-section {
    display: block
  }

  .about-heading h2 {
    font-size: 40px
  }

  .about-copy {
    margin-top: 32px
  }

  .about-copy .large-copy {
    font-size: 27px;
    max-width: 300px
  }

  .about-copy>p {
    font-size: 14px
  }

  .practice-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 35px;
    padding-top: 25px
  }

  .practice-grid>div:not(:last-child) {
    border-right: 0;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line)
  }

  .practice-grid h3 {
    font-size: 21px;
    margin-top: 12px
  }

  .practice-grid p {
    font-size: 13px;
    margin-top: 10px;
    max-width: 400px
  }

  .experiments-section {
    display: block;
    padding: 27px 23px
  }

  .experiment-label h2 {
    font-size: 34px
  }

  .experiment-items {
    margin-top: 30px
  }

  .experiment-row h3 {
    font-size: 19px
  }

  .experiment-row p {
    font-size: 12px
  }

  .contact-section {
    padding-block: 65px 75px
  }

  .contact-section h2 {
    font-size: 46px
  }

  .contact-section .button {
    font-size: 11px;
    gap: 22px
  }

  .contact-watermark {
    font-size: 270px;
    right: -20px;
    top: 20px;
    opacity: .5
  }

  .site-footer {
    padding-block: 25px;
    gap: 22px 10px
  }

  .site-footer>.wordmark {
    font-size: 16px
  }

  .site-footer>div {
    font-size: 10px;
    gap: 16px
  }

  .site-footer>p {
    font-size: 11px
  }

  .footer-signature {
    font-size: 7px
  }

  .breadcrumbs {
    font-size: 9px;
    gap: 10px
  }

  .project-page {
    padding-top: 20px
  }

  .project-header {
    display: block;
    margin-top: 35px
  }

  .project-header h1 {
    font-size: 49px;
    overflow-wrap: anywhere;
    margin: 20px 0
  }

  .project-tagline {
    font-size: 21px;
    line-height: 1.4
  }

  .project-header>.project-status {
    margin-top: 18px
  }

  .project-lead {
    margin-top: 25px;
    margin-bottom: 30px
  }

  .project-lead>p {
    font-size: 14px
  }

  .project-lead .tech-list {
    font-size: 10px
  }

  .cover-art {
    height: 285px
  }

  .cover-art .photo-scene {
    transform: scale(.87)
  }

  .cover-art .circuit-board {
    width: 130px;
    height: 140px
  }

  .cover-art .visual {
    padding: 35px 18px
  }

  .project-cover figcaption {
    font-size: 8px;
    padding: 12px 17px
  }

  .case-index nav {
    gap: 5px 20px
  }

  .case-index nav a {
    font-size: 11px
  }

  .case-sections h2 {
    font-size: 30px;
    margin: 16px 0 20px
  }

  .case-sections p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.85
  }

  .case-sections section {
    margin-bottom: 44px
  }

  .decision-list>div {
    gap: 18px;
    padding-block: 22px
  }

  .decision-list h3 {
    font-size: 20px
  }

  .learning-note {
    padding: 22px
  }

  .next-project {
    display: block;
    padding-bottom: 55px
  }

  .next-project>div>a {
    font-size: 28px
  }

  .next-project>.text-link {
    margin-top: 18px
  }
}

@media(max-width:370px) {
  .container {
    width: calc(100% - 32px)
  }

  .hero h1 {
    font-size: 43px
  }

  .hero-actions {
    gap: 13px
  }

  .hero-actions .button {
    gap: 10px;
    font-size: 11px
  }

  .hero-actions .text-link {
    font-size: 11px
  }

  .wordmark {
    font-size: 17px
  }

  .art-topline {
    font-size: 7px
  }

  .project-status {
    font-size: 7px
  }

  .ecosystem-root>span:last-child {
    max-width: 77px;
    font-size: 7px
  }

  .satellite {
    padding: 9px
  }

  .satellite strong {
    font-size: 9px
  }

  .satellite small {
    font-size: 6px
  }

  .core-node {
    width: 124px;
    height: 131px
  }

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

  .site-footer>div {
    justify-content: flex-start
  }

  .site-footer>p {
    grid-row: auto
  }

  .architecture-steps {
    gap: 8px
  }

  .architecture-steps li {
    padding: 15px 11px
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  .project-card:hover .visual,
  .button-primary:hover,
  .satellite:hover {
    transform: none
  }
}

@media print {
  body {
    background: #fff;
    color: #111
  }

  .site-header {
    position: static
  }

  .main-nav,
  .private-entry,
  .hero-world,
  .site-footer,
  .contact-section,
  .hero-actions,
  .case-index {
    display: none
  }

  .container {
    width: 100%
  }

  .hero,
  .about-section,
  .case-study {
    display: block
  }

  .section-space {
    padding-block: 25px
  }

  .project-grid {
    display: block
  }

  .project-card {
    break-inside: avoid;
    margin-bottom: 15px
  }

  .project-art {
    height: 220px
  }

  p,
  .muted-word,
  em {
    color: #222 !important
  }

  a {
    text-decoration: underline
  }
}
