:root {
  --ink: #101714;
  --ink-soft: #17211d;
  --ink-raised: #1c2823;
  --paper: #f2eee3;
  --paper-bright: #fbf8f0;
  --paper-deep: #e7e0d1;
  --muted: #606963;
  --muted-light: #aeb8b0;
  --line: rgba(16, 23, 20, 0.14);
  --line-light: rgba(242, 238, 227, 0.16);
  --orange: #ed9e55;
  --orange-deep: #a95629;
  --mint: #8ed7be;
  --mint-deep: #397c68;
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 18px;
  --shadow: 0 28px 80px rgba(20, 26, 23, 0.13);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.15) 3px);
  mix-blend-mode: multiply;
}

::selection {
  color: var(--paper-bright);
  background: var(--mint-deep);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--orange-deep);
  font-weight: 500;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper-bright);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  flex: 0 0 auto;
  border-radius: 13px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.brand-name span {
  margin-left: 3px;
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: 0.12em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  color: rgba(251, 248, 240, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

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

.desktop-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--paper-bright);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 178px 0 100px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 77% 30%, rgba(73, 132, 108, 0.18), transparent 32%),
    radial-gradient(circle at 12% 90%, rgba(237, 158, 85, 0.08), transparent 30%),
    var(--ink);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -310px;
  left: -10%;
  height: 360px;
  border-radius: 50%;
  content: "";
  background: var(--paper);
}

.hero-glow {
  position: absolute;
  top: -300px;
  left: 42%;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(142, 215, 190, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 160px rgba(142, 215, 190, 0.04);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 24px;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero .eyebrow {
  color: var(--mint);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(58px, 6vw, 84px);
}

.hero h1 em {
  color: var(--orange);
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 36px;
  color: rgba(251, 248, 240, 0.7);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-bottom: 44px;
}

.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-primary:hover {
  background: var(--mint);
}

.text-link {
  color: rgba(251, 248, 240, 0.75);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 6px;
  color: var(--orange);
}

.official-note {
  max-width: 590px;
  margin-bottom: 0;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  color: rgba(251, 248, 240, 0.58);
  font-size: 11px;
  line-height: 1.7;
}

.official-note strong {
  color: rgba(251, 248, 240, 0.82);
}

.availability-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-note span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(142, 215, 190, 0.65);
}

.hero-art {
  position: relative;
  overflow: hidden;
  min-height: 535px;
  border: 1px solid rgba(251, 248, 240, 0.14);
  border-radius: 4px 42px 4px 4px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.22);
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  z-index: 3;
  content: "";
  pointer-events: none;
}

.hero-art::before {
  inset: 12px;
  border: 1px solid rgba(251, 248, 240, 0.06);
  border-radius: 2px 32px 2px 2px;
}

.hero-art::after {
  top: -1px;
  right: 66px;
  width: 1px;
  height: 54px;
  background: rgba(251, 248, 240, 0.18);
  transform: rotate(45deg);
  transform-origin: top;
}

.art-topline,
.art-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  color: rgba(251, 248, 240, 0.64);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-indicator {
  display: flex;
  gap: 7px;
  align-items: center;
  color: var(--mint);
}

.live-indicator i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.world-field {
  position: relative;
  display: grid;
  place-items: center;
  height: 420px;
  overflow: hidden;
  border-block: 1px solid rgba(251, 248, 240, 0.08);
  background: radial-gradient(circle, rgba(142, 215, 190, 0.13), transparent 50%);
}

.field-grid {
  position: absolute;
  inset: -20%;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(420px) rotateX(58deg) rotateZ(-8deg) scale(1.15);
  mask-image: radial-gradient(circle, black 12%, transparent 67%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(142, 215, 190, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: 230px;
  height: 230px;
  animation: slow-spin 28s linear infinite;
}

.orbit-one::before {
  position: absolute;
  top: 16px;
  left: 39px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 18px rgba(237, 158, 85, 0.7);
}

.orbit-two {
  width: 310px;
  height: 156px;
  border-color: rgba(237, 158, 85, 0.2);
  transform: rotate(-20deg);
}

.orbit-three {
  width: 388px;
  height: 388px;
  border-style: dashed;
  border-color: rgba(251, 248, 240, 0.1);
  animation: reverse-spin 40s linear infinite;
}

.world-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 178px;
  height: 178px;
  place-items: center;
  border: 1px solid rgba(251, 248, 240, 0.22);
  border-radius: 50%;
  background: rgba(16, 23, 20, 0.74);
  box-shadow: inset 0 0 50px rgba(142, 215, 190, 0.08), 0 0 70px rgba(142, 215, 190, 0.08);
}

.world-core::before,
.world-core::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.world-core::before {
  inset: 12px;
  border: 1px dashed rgba(251, 248, 240, 0.14);
}

.world-core::after {
  inset: 31px;
  border: 1px solid rgba(237, 158, 85, 0.2);
}

.core-surface {
  position: relative;
  z-index: 2;
  padding: 12px;
  border-radius: 26px;
  background: rgba(16, 23, 20, 0.84);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: rotate(-7deg);
}

.core-surface img {
  border-radius: 22px;
}

.coordinate {
  position: absolute;
  color: rgba(251, 248, 240, 0.3);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.coordinate-one { top: 38px; left: 30px; }
.coordinate-two { right: 22px; bottom: 48px; writing-mode: vertical-rl; }
.coordinate-three { bottom: 28px; left: 32px; }

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--paper-bright);
  box-shadow: 0 0 9px var(--paper-bright);
}

.spark-one { top: 24%; right: 19%; }
.spark-two { bottom: 22%; left: 16%; }
.spark-three { top: 19%; left: 31%; background: var(--orange); }

.art-footer {
  min-height: 66px;
}

.art-rule {
  flex: 1;
  height: 1px;
  margin-inline: 18px;
  background: rgba(251, 248, 240, 0.1);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes reverse-spin {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.manifesto {
  position: relative;
  z-index: 4;
  padding: 40px 0 96px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 48px;
  align-items: start;
}

.section-index {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto-copy {
  max-width: 850px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 50px);
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.section {
  padding: 118px 0;
}

.company {
  border-top: 1px solid var(--line);
  background: var(--paper-bright);
}

.two-column-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
  margin-bottom: 76px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.5vw, 76px);
}

.two-column-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.principle-card {
  position: relative;
  min-height: 360px;
  padding: 30px 34px 36px;
  border-right: 1px solid var(--line);
}

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

.principle-card.featured-card {
  color: var(--paper-bright);
  background: var(--ink);
  transform: translateY(-18px);
  box-shadow: var(--shadow);
}

.principle-number {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.featured-card .principle-number {
  color: var(--mint);
}

.principle-icon {
  position: relative;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
}

.icon-layers i {
  position: absolute;
  width: 30px;
  height: 22px;
  border: 1px solid var(--orange-deep);
  transform: skewY(-24deg);
}

.icon-layers i:nth-child(1) { top: 0; left: 8px; }
.icon-layers i:nth-child(2) { top: 8px; left: 4px; opacity: 0.65; }
.icon-layers i:nth-child(3) { top: 16px; left: 0; opacity: 0.3; }

.icon-compass {
  border: 1px solid rgba(142, 215, 190, 0.5);
  border-radius: 50%;
}

.icon-compass::before,
.icon-compass::after {
  position: absolute;
  content: "";
}

.icon-compass::before {
  inset: 7px;
  border: 1px dashed rgba(142, 215, 190, 0.3);
  border-radius: 50%;
}

.icon-compass::after {
  top: 12px;
  left: 19px;
  width: 9px;
  height: 23px;
  background: var(--mint);
  clip-path: polygon(50% 0, 100% 100%, 50% 76%, 0 100%);
  transform: rotate(35deg);
}

.icon-spark::before,
.icon-spark::after,
.icon-spark i::before,
.icon-spark i::after {
  position: absolute;
  top: 23px;
  left: 4px;
  width: 40px;
  height: 1px;
  content: "";
  background: var(--mint-deep);
}

.icon-spark::after { transform: rotate(90deg); }
.icon-spark i::before { transform: rotate(45deg) scaleX(0.72); }
.icon-spark i::after { transform: rotate(-45deg) scaleX(0.72); }

.principle-card h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.principle-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.featured-card p {
  color: rgba(251, 248, 240, 0.6);
}

.capability-cards .capability-card {
  min-height: 520px;
}

.capability-card .principle-number {
  margin-bottom: 38px;
}

.capability-card .principle-icon {
  margin-bottom: 28px;
}

.capability-card > p {
  min-height: 72px;
}

.capability-list {
  margin: 25px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability-list li {
  position: relative;
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.capability-list li::before {
  position: absolute;
  top: 17px;
  left: 1px;
  width: 5px;
  height: 1px;
  content: "";
  background: var(--orange-deep);
}

.featured-card .capability-list {
  border-top-color: var(--line-light);
}

.featured-card .capability-list li {
  border-bottom-color: var(--line-light);
  color: rgba(251, 248, 240, 0.68);
}

.featured-card .capability-list li::before {
  background: var(--mint);
}

.software-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.software-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(70px, 11vw, 150px);
  align-items: center;
}

.software-copy h2 {
  margin-bottom: 34px;
  font-size: clamp(52px, 5.7vw, 78px);
}

.software-lede {
  max-width: 630px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 29px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.software-copy > p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.software-panel {
  padding: 42px;
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.software-panel .section-index {
  margin-bottom: 38px;
  color: var(--mint);
}

.software-services {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.software-services li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(251, 248, 240, 0.8);
  font-size: 13px;
}

.software-services li span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
}

.software-note {
  margin: 30px 0 0;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  color: rgba(251, 248, 240, 0.63);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.55;
}

.approach {
  border-top: 1px solid rgba(16, 23, 20, 0.1);
  background: #dfe9e2;
}

.approach-heading {
  margin-bottom: 70px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-block: 1px solid rgba(16, 23, 20, 0.18);
  list-style: none;
}

.approach-steps li {
  min-height: 300px;
  padding: 28px 25px 32px;
  border-right: 1px solid rgba(16, 23, 20, 0.18);
}

.approach-steps li:last-child {
  border-right: 0;
}

.approach-steps li > span {
  display: block;
  margin-bottom: 65px;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
}

.approach-steps h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.approach-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.candid-note {
  max-width: 850px;
  margin: 54px 0 0 auto;
  padding: 23px 0 2px 25px;
  border-top: 1px solid rgba(16, 23, 20, 0.18);
  border-left: 3px solid var(--orange-deep);
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.candid-note strong {
  color: var(--ink);
  font-weight: 600;
}

.project {
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--ink);
}

.project::before {
  position: absolute;
  top: -320px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(142, 215, 190, 0.08);
  border-radius: 50%;
  content: "";
}

.project-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.light-index {
  margin-bottom: 48px;
  color: rgba(251, 248, 240, 0.38);
}

.project-status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(142, 215, 190, 0.65);
}

.project-copy h2 {
  margin-bottom: 34px;
  color: var(--paper-bright);
  font-size: clamp(78px, 9vw, 126px);
}

.project-copy h2 em {
  color: var(--orange);
}

.project-intro {
  max-width: 430px;
  margin-bottom: 22px;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.4;
}

.project-copy > p:not(.section-index, .project-intro, .project-status, .project-footnote) {
  max-width: 470px;
  color: rgba(251, 248, 240, 0.68);
  font-size: 14px;
  line-height: 1.8;
}

.project-copy strong {
  color: rgba(251, 248, 240, 0.82);
}

.project-footnote {
  margin: 32px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-display {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 240, 0.15);
  border-radius: 4px;
  background: var(--ink-soft);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.26);
}

.display-corners i {
  position: absolute;
  z-index: 4;
  width: 18px;
  height: 18px;
  border-color: var(--orange);
}

.display-corners i:nth-child(1) { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.display-corners i:nth-child(2) { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.display-corners i:nth-child(3) { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.display-corners i:nth-child(4) { right: 12px; bottom: 12px; border-right: 1px solid; border-bottom: 1px solid; }

.project-landscape {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-bottom: 1px solid rgba(251, 248, 240, 0.1);
  background:
    linear-gradient(180deg, rgba(16, 23, 20, 0.05), rgba(16, 23, 20, 0.3)),
    #b7d3c6;
}

.project-landscape::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(16, 23, 20, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 23, 20, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.sun-disc {
  position: absolute;
  top: 56px;
  right: 90px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 60px rgba(237, 158, 85, 0.38);
}

.ridge {
  position: absolute;
  right: -8%;
  bottom: -2px;
  left: -8%;
  transform-origin: bottom;
}

.ridge-back {
  height: 53%;
  background: #668f7f;
  clip-path: polygon(0 72%, 11% 57%, 19% 63%, 31% 26%, 40% 50%, 52% 12%, 66% 54%, 78% 34%, 89% 65%, 100% 49%, 100% 100%, 0 100%);
  opacity: 0.74;
}

.ridge-middle {
  height: 46%;
  background: #345f50;
  clip-path: polygon(0 58%, 13% 31%, 27% 61%, 42% 19%, 55% 56%, 70% 25%, 83% 48%, 100% 10%, 100% 100%, 0 100%);
}

.ridge-front {
  height: 29%;
  background: #182c25;
  clip-path: polygon(0 47%, 14% 13%, 28% 52%, 43% 19%, 60% 63%, 74% 14%, 87% 54%, 100% 31%, 100% 100%, 0 100%);
}

.trail {
  position: absolute;
  z-index: 3;
  bottom: -27px;
  left: 44%;
  width: 100px;
  height: 170px;
  border-left: 3px solid rgba(237, 158, 85, 0.8);
  border-radius: 50%;
  transform: rotate(19deg) skewX(-15deg);
}

.landscape-label {
  position: absolute;
  z-index: 4;
  padding: 6px 9px;
  color: rgba(16, 23, 20, 0.7);
  background: rgba(242, 238, 227, 0.72);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.label-a { top: 22px; left: 24px; }
.label-b { right: 24px; bottom: 22px; }

.project-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 14px 24px 24px;
}

.project-facts div {
  padding: 17px 16px;
  border-bottom: 1px solid rgba(251, 248, 240, 0.08);
}

.project-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.project-facts dt {
  margin-bottom: 5px;
  color: rgba(251, 248, 240, 0.6);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  color: rgba(251, 248, 240, 0.83);
  font-size: 13px;
  font-weight: 650;
}

.identity {
  background: var(--paper-bright);
}

.identity-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(70px, 12vw, 170px);
  align-items: center;
}

.identity-mark {
  position: relative;
  display: grid;
  min-height: 370px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50% 50% 8px 50%;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.identity-mark::before,
.identity-mark::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.identity-mark::before { width: 250px; height: 250px; }
.identity-mark::after { width: 190px; height: 190px; border-style: dashed; }

.identity-mark img {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  box-shadow: 0 22px 50px rgba(16, 23, 20, 0.25);
  transform: rotate(-6deg);
}

.identity-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 82px);
}

.identity-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}

.identity-copy blockquote {
  max-width: 720px;
  margin: 34px 0 0;
  padding: 25px 0 4px 28px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 31px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.contact-band {
  color: var(--paper-bright);
  background: var(--orange-deep);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 390px;
}

.light-eyebrow {
  color: var(--paper-bright);
}

.contact-band h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(40px, 4.4vw, 60px);
}

.contact-address {
  position: relative;
  display: block;
  padding: 28px 54px 28px 0;
  border-block: 1px solid rgba(251, 248, 240, 0.3);
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: -0.03em;
  text-decoration: none;
}

.contact-address span {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-address i {
  position: absolute;
  top: 38px;
  right: 3px;
  font-family: var(--sans);
  font-size: 20px;
  font-style: normal;
  transition: transform 180ms ease;
}

.contact-address:hover i {
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 72px 0 30px;
  color: var(--paper-bright);
  background: #0a0f0d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 66px;
}

.footer-main > p {
  color: rgba(251, 248, 240, 0.66);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.5;
}

.footer-main nav {
  display: grid;
  gap: 11px;
  font-size: 13px;
}

.footer-main nav a {
  color: rgba(251, 248, 240, 0.7);
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--paper-bright);
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(251, 248, 240, 0.1);
  color: rgba(251, 248, 240, 0.62);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal p {
  margin-bottom: 0;
}

/* Interior pages */

.subpage {
  background: var(--paper-bright);
}

.inner-header {
  position: relative;
  color: var(--ink);
  background: var(--paper-bright);
}

.inner-header .header-inner {
  border-bottom-color: var(--line);
}

.inner-header .brand-name span {
  color: var(--muted);
}

.inner-header .desktop-nav {
  color: var(--muted);
}

.inner-header .desktop-nav a:hover,
.inner-header .desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.inner-header .desktop-nav .nav-cta {
  border-color: var(--line);
  color: var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 105px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 40%, rgba(142, 215, 190, 0.2), transparent 27%),
    var(--paper);
}

.page-hero::after {
  position: absolute;
  top: -160px;
  right: -90px;
  width: 500px;
  height: 500px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(70px, 11vw, 160px);
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(64px, 7.4vw, 104px);
}

.page-intro {
  padding-bottom: 8px;
}

.page-intro > p:first-child {
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(21px, 2.3vw, 29px);
  letter-spacing: -0.02em;
  line-height: 1.45;
}

.page-updated {
  margin: 28px 0 0;
  color: var(--mint-deep);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-section {
  padding: 100px 0 130px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 12vw, 170px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.legal-aside .section-index {
  margin-bottom: 30px;
}

.legal-aside dl {
  margin: 0;
}

.legal-aside dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-aside dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-aside dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}

.legal-copy > section {
  position: relative;
  padding: 0 0 54px 58px;
  border-left: 1px solid var(--line);
}

.legal-copy > section:last-child {
  padding-bottom: 0;
}

.legal-number {
  position: absolute;
  top: 0;
  left: -17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--mint-deep);
  background: var(--paper-bright);
  font-family: var(--mono);
  font-size: 8px;
}

.legal-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3vw, 42px);
}

.legal-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.legal-copy a {
  color: var(--mint-deep);
  font-weight: 700;
}

.legal-contact h2,
.legal-contact p {
  color: var(--ink);
}

.contact-page-hero {
  background:
    radial-gradient(circle at 85% 35%, rgba(237, 158, 85, 0.18), transparent 27%),
    var(--paper);
}

.contact-options-section {
  padding: 110px 0 130px;
  background: var(--paper-bright);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 120px;
  border: 1px solid var(--line);
}

.contact-option {
  min-height: 430px;
  padding: 42px;
  background: var(--paper);
}

.contact-option + .contact-option {
  border-left: 1px solid var(--line);
}

.contact-option.primary-contact {
  color: var(--paper-bright);
  background: var(--ink);
}

.contact-option .section-index {
  margin-bottom: 70px;
}

.primary-contact .section-index {
  color: var(--mint);
}

.contact-option h2 {
  min-height: 94px;
  margin-bottom: 32px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.1;
}

.contact-option > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  color: var(--mint-deep);
  font-family: var(--display);
  font-size: clamp(20px, 2.3vw, 28px);
  font-weight: 600;
  text-decoration: none;
}

.primary-contact > a {
  border-color: var(--line-light);
  color: var(--orange);
}

.contact-option > a span {
  font-family: var(--sans);
  font-size: 18px;
  transition: transform 180ms ease;
}

.contact-option > a:hover span {
  transform: translate(4px, -4px);
}

.contact-option > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.primary-contact > p:last-child {
  color: rgba(251, 248, 240, 0.52);
}

.contact-notes {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.contact-notes h2 {
  margin-bottom: 0;
  font-size: clamp(45px, 5vw, 67px);
}

.contact-notes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-notes li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.contact-notes li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-notes li span {
  color: var(--orange-deep);
  font-family: var(--mono);
  font-size: 9px;
}

.error-page {
  min-height: 100vh;
  color: var(--paper-bright);
  background: var(--ink);
}

.error-main {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
}

.error-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.error-copy .eyebrow {
  justify-content: center;
  color: var(--mint);
}

.error-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(70px, 10vw, 140px);
}

.error-copy h1 em {
  color: var(--orange);
}

.error-copy > p:not(.eyebrow) {
  margin-bottom: 34px;
  color: rgba(251, 248, 240, 0.58);
}

.error-orbit,
.error-orbit i {
  position: absolute;
  border: 1px solid rgba(142, 215, 190, 0.1);
  border-radius: 50%;
}

.error-orbit {
  width: min(80vw, 860px);
  height: min(80vw, 860px);
}

.error-orbit i:nth-child(1) { inset: 12%; }
.error-orbit i:nth-child(2) { inset: 27%; border-style: dashed; }
.error-orbit i:nth-child(3) { inset: 41%; border-color: rgba(237, 158, 85, 0.2); }

@media (max-width: 1020px) {
  .hero {
    padding-top: 155px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    width: min(660px, 100%);
  }

  .manifesto-grid {
    grid-template-columns: 0.7fr 2.3fr;
  }

  .two-column-heading,
  .project-shell,
  .identity-grid,
  .software-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column-heading {
    gap: 36px;
  }

  .two-column-heading > p {
    max-width: 720px;
  }

  .project-copy {
    display: grid;
    min-width: 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
  }

  .project-copy .section-index,
  .project-copy .project-status,
  .project-copy h2,
  .project-copy .project-footnote {
    grid-column: 1 / -1;
  }

  .project-copy h2 br {
    display: none;
  }

  .identity-mark {
    width: min(480px, 100%);
  }

  .software-panel {
    width: min(680px, 100%);
  }

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

  .approach-steps li:nth-child(2) {
    border-right: 0;
  }

  .approach-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(16, 23, 20, 0.18);
  }

  .page-hero-grid,
  .legal-layout,
  .contact-notes {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    gap: 44px;
  }

  .legal-layout {
    gap: 70px;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-nav summary {
    padding: 8px 12px;
    border: 1px solid rgba(251, 248, 240, 0.24);
    border-radius: 999px;
    color: var(--paper-bright);
    font-size: 12px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav nav {
    position: absolute;
    top: 46px;
    right: 0;
    display: grid;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    background: var(--ink-soft);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav nav a {
    padding: 9px 10px;
    color: rgba(251, 248, 240, 0.76);
    font-size: 13px;
    text-decoration: none;
  }

  .inner-header .mobile-nav summary {
    border-color: var(--line);
    color: var(--ink);
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 640px);
  }

  .header-inner {
    min-height: 78px;
  }

  .desktop-nav {
    display: none;
  }

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

  .mobile-nav summary {
    padding: 8px 12px;
    border: 1px solid rgba(251, 248, 240, 0.24);
    border-radius: 999px;
    color: var(--paper-bright);
    font-size: 12px;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-nav nav {
    position: absolute;
    top: 46px;
    right: 0;
    display: grid;
    width: 190px;
    padding: 10px;
    border: 1px solid var(--line-light);
    border-radius: 12px;
    background: var(--ink-soft);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .mobile-nav nav a {
    padding: 9px 10px;
    color: rgba(251, 248, 240, 0.76);
    font-size: 13px;
    text-decoration: none;
  }

  .inner-header .mobile-nav summary {
    border-color: var(--line);
    color: var(--ink);
  }

  .brand-name {
    font-size: 13px;
  }

  .brand-name span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 180px;
  }

  .hero::after {
    bottom: -300px;
  }

  .hero h1 {
    font-size: clamp(50px, 14.5vw, 66px);
  }

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

  .button {
    width: 100%;
  }

  .hero-art {
    min-height: 470px;
    border-radius: 3px 28px 3px 3px;
  }

  .world-field {
    height: 355px;
  }

  .orbit-three {
    width: 330px;
    height: 330px;
  }

  .manifesto {
    padding-bottom: 70px;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .manifesto-copy {
    font-size: 30px;
  }

  .section {
    padding: 82px 0;
  }

  .principles {
    grid-template-columns: 1fr;
    border: 0;
  }

  .principle-card,
  .principle-card:last-child {
    min-height: 310px;
    border: 1px solid var(--line);
    border-bottom: 0;
  }

  .principle-card:last-child {
    border-bottom: 1px solid var(--line);
  }

  .principle-card.featured-card {
    border-color: var(--ink);
    transform: none;
  }

  .capability-cards .capability-card {
    min-height: auto;
    padding-bottom: 38px;
  }

  .capability-card > p {
    min-height: auto;
  }

  .software-panel {
    padding: 30px;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-steps li,
  .approach-steps li:nth-child(2),
  .approach-steps li:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 23, 20, 0.18);
  }

  .approach-steps li:last-child {
    border-bottom: 0;
  }

  .approach-steps li > span {
    margin-bottom: 34px;
  }

  .approach-steps h3 {
    min-height: auto;
  }

  .project-copy {
    display: block;
  }

  .project-copy h2 {
    font-size: clamp(68px, 22vw, 94px);
  }

  .project-copy h2 br {
    display: block;
  }

  .project-display {
    min-width: 0;
  }

  .project-landscape {
    height: 330px;
  }

  .sun-disc {
    top: 42px;
    right: 52px;
    width: 72px;
    height: 72px;
  }

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

  .project-facts div:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(251, 248, 240, 0.08);
  }

  .project-facts div:last-child {
    border-bottom: 0;
  }

  .identity-mark {
    min-height: 320px;
  }

  .identity-copy blockquote {
    padding-left: 20px;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 72px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-legal {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 76px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(58px, 17vw, 78px);
  }

  .legal-section,
  .contact-options-section {
    padding: 76px 0 90px;
  }

  .legal-copy > section {
    padding: 0 0 50px 35px;
  }

  .contact-options {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .contact-option {
    min-height: 390px;
    padding: 30px;
  }

  .contact-option + .contact-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-option .section-index {
    margin-bottom: 50px;
  }

  .contact-option h2 {
    min-height: auto;
  }
}

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

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

@media print {
  .site-header,
  .hero-art,
  .contact-band,
  .mobile-nav {
    display: none;
  }

  .hero,
  .project,
  .site-footer {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero::after {
    display: none;
  }
}
