:root {
  --graphite: #111214;
  --graphite-soft: #18191d;
  --graphite-raised: #222328;
  --paper: #f7f2e9;
  --paper-deep: #e9e2d7;
  --ink: #202825;
  --body: #4a5550;
  --muted: #66706b;
  --on-dark: #fcfaf3;
  --on-dark-muted: rgba(252, 250, 243, 0.7);
  --line: rgba(32, 40, 37, 0.16);
  --line-dark: rgba(252, 250, 243, 0.15);
  --terracotta: #d97757;
  --terracotta-deep: #a84f35;
  --teal: #4fb3a7;
  --font: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --header-height: 66px;
  --radius-small: 8px;
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 30px 90px rgba(16, 18, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--graphite);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(217, 119, 87, 0.66);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--graphite);
  background: var(--paper);
  border-radius: var(--radius-small);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.reading-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  color: var(--on-dark);
  background: rgba(17, 18, 20, 0.87);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1420px, calc(100% - 42px));
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(220px, auto) 1fr;
  gap: 28px;
  align-items: center;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  width: fit-content;
  color: var(--on-dark);
  text-decoration: none;
}

.brand__symbol {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 9px;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__copy strong {
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand__copy strong span {
  color: var(--terracotta);
}

.brand__copy small {
  color: var(--on-dark-muted);
  font: 500 0.58rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: var(--on-dark-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--on-dark);
}

.site-nav .header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  color: var(--on-dark);
  background: rgba(217, 119, 87, 0.12);
  border: 1px solid rgba(217, 119, 87, 0.52);
  border-radius: var(--radius-small);
}

.menu-toggle,
.menu-overlay {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: calc(var(--header-height) + 42px) 0 0;
  overflow: hidden;
  color: var(--on-dark);
  background:
    radial-gradient(circle at 74% 40%, rgba(217, 119, 87, 0.13), transparent 31%),
    radial-gradient(circle at 28% 20%, rgba(79, 179, 167, 0.05), transparent 26%),
    var(--graphite);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line-dark);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1420px, calc(100% - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.66fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  margin: 0 auto;
  padding: 24px 0 54px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--terracotta);
  font: 600 0.67rem/1.2 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(217, 119, 87, 0.1);
  content: "";
}

.eyebrow--ink {
  color: var(--terracotta-deep);
}

.hero h1 {
  max-width: 980px;
  margin: 24px 0 26px;
  font-size: clamp(3.4rem, 6.7vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 span {
  display: block;
  color: var(--terracotta);
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 30px;
  color: var(--on-dark-muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--primary {
  color: var(--graphite);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button--primary:hover {
  background: #e08061;
}

.text-link {
  color: var(--on-dark-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

.text-link:hover {
  color: var(--on-dark);
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(252, 250, 243, 0.47);
  font: 500 0.62rem/1.4 var(--mono);
  letter-spacing: 0.04em;
}

.hero-system {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  padding: 20px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(252, 250, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 250, 243, 0.025) 1px, transparent 1px),
    #0d0e10;
  background-size: 100% 42px, 42px 100%, auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38);
  isolation: isolate;
}

.hero-system::before {
  position: absolute;
  z-index: -1;
  top: 17%;
  right: -18%;
  width: 72%;
  aspect-ratio: 1;
  background: rgba(217, 119, 87, 0.13);
  border: 1px solid rgba(217, 119, 87, 0.25);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(217, 119, 87, 0.04),
    0 0 0 78px rgba(79, 179, 167, 0.025);
  content: "";
}

.hero-system__top {
  min-height: 34px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--terracotta);
  font: 600 0.58rem/1.3 var(--mono);
  letter-spacing: 0.11em;
}

.hero-system__top b {
  color: var(--on-dark-muted);
  font-weight: 500;
}

.hero-system__mark {
  min-height: 285px;
  display: grid;
  grid-template-columns: minmax(170px, 0.92fr) minmax(150px, 0.72fr);
  gap: 8px;
  align-items: center;
}

.hero-system__mark img {
  width: min(100%, 235px);
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: center;
}

.hero-system__mark p {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hero-system__mark span {
  color: var(--terracotta);
  font: 600 0.56rem/1.3 var(--mono);
  letter-spacing: 0.12em;
}

.hero-system__mark strong {
  max-width: 180px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-system__path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.hero-system__path li {
  min-height: 72px;
  display: grid;
  gap: 5px;
  align-content: center;
  padding: 11px 8px;
  border-right: 1px solid var(--line-dark);
}

.hero-system__path li:last-child {
  border-right: 0;
}

.hero-system__path b {
  color: var(--terracotta);
  font: 600 0.55rem/1 var(--mono);
}

.hero-system__path span {
  font-size: 0.65rem;
  font-weight: 600;
}

.hero-system figcaption {
  padding-top: 15px;
  color: var(--on-dark-muted);
  font: 500 0.62rem/1.45 var(--mono);
  letter-spacing: 0.02em;
}

.experience-strip {
  position: relative;
  z-index: 3;
  width: min(1420px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}

.experience-strip span {
  min-height: 58px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 20px;
  color: rgba(252, 250, 243, 0.5);
  border-right: 1px solid var(--line-dark);
  font-size: 0.65rem;
}

.experience-strip span:last-child {
  border-right: 0;
}

.experience-strip b {
  color: var(--on-dark);
  font: 600 0.65rem/1 var(--mono);
}

.section-paper {
  color: var(--ink);
  background:
    linear-gradient(rgba(32, 40, 37, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 118px;
}

.section-dark {
  color: var(--on-dark);
  background: var(--graphite);
}

.section-shell {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 145px) 0;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.about h2,
.contact h2 {
  max-width: 920px;
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5.1vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-heading > p,
.section-heading--split > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.section-heading--dark {
  max-width: 900px;
}

.section-heading--dark h2 {
  color: var(--on-dark);
}

.section-heading--dark p {
  max-width: 630px;
  margin-top: 22px;
  color: var(--on-dark-muted);
}

.method-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-path::before {
  position: absolute;
  top: 25px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: var(--line);
  content: "";
}

.method-path li {
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 0 10px;
  text-align: center;
}

.method-path li > span {
  position: relative;
  z-index: 2;
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 600 0.63rem/1 var(--mono);
}

.method-path li.is-start > span {
  color: var(--paper);
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  box-shadow: 0 0 0 7px rgba(217, 119, 87, 0.11);
}

.method-path strong {
  margin-top: 6px;
  font-size: 0.9rem;
}

.method-path small {
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.35;
}

.method-callout {
  display: grid;
  grid-template-columns: 0.3fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 26px 28px;
  margin-top: 58px;
  color: var(--on-dark);
  background: var(--graphite-soft);
  border-radius: var(--radius);
}

.method-callout > span {
  color: var(--terracotta);
  font: 600 0.63rem/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-callout p {
  max-width: 690px;
  margin: 0;
  color: var(--on-dark-muted);
  font-size: 0.84rem;
}

.method-callout a {
  color: var(--on-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.route-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 14px;
}

.route-card {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--on-dark);
  background: var(--graphite-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-card:hover {
  transform: translateY(-5px);
  background: var(--graphite-raised);
  border-color: rgba(217, 119, 87, 0.55);
}

.route-card--primary {
  background:
    radial-gradient(circle at 85% 14%, rgba(217, 119, 87, 0.18), transparent 34%),
    var(--graphite-soft);
  border-color: rgba(217, 119, 87, 0.5);
}

.route-card > span,
.project-copy > span,
.contact-success > span {
  color: var(--terracotta);
  font: 600 0.59rem/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h3 {
  margin: 35px 0 18px;
  font-size: clamp(1.55rem, 2.3vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.route-card p {
  margin-bottom: 32px;
  color: var(--on-dark-muted);
  font-size: 0.82rem;
}

.route-card > b {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: auto;
  color: var(--on-dark);
  font-size: 0.74rem;
}

.route-card i,
.project-copy i {
  color: var(--terracotta);
  font-style: normal;
}

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

.network-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.network-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(252, 250, 243, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.network-card::before {
  width: 9px;
  height: 9px;
  margin-bottom: 28px;
  background: var(--paper);
  border: 2px solid var(--terracotta-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(217, 119, 87, 0.08);
  content: "";
}

a.network-card:hover {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(168, 79, 53, 0.5);
  box-shadow: var(--shadow);
}

.network-card > span {
  color: var(--terracotta-deep);
  font: 600 0.56rem/1.3 var(--mono);
  letter-spacing: 0.09em;
}

.network-card > strong {
  margin: 17px 0 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.network-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.74rem;
}

.network-card small {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font: 600 0.55rem/1.3 var(--mono);
  letter-spacing: 0.07em;
}

.network-card small b {
  color: var(--terracotta-deep);
}

.network-card--current,
.network-card--accent {
  color: var(--on-dark);
  background:
    radial-gradient(circle at 88% 12%, rgba(217, 119, 87, 0.17), transparent 32%),
    var(--graphite);
  border-color: var(--graphite);
}

.network-card--current::before,
.network-card--accent::before {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.network-card--current > span,
.network-card--accent > span,
.network-card--current small b,
.network-card--accent small b {
  color: var(--terracotta);
}

.network-card--current p,
.network-card--accent p,
.network-card--current small,
.network-card--accent small {
  color: var(--on-dark-muted);
}

.network-card--current small,
.network-card--accent small {
  border-color: var(--line-dark);
}

.world-switch {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  margin-top: 16px;
  color: var(--on-dark);
  background: var(--graphite);
  border-radius: var(--radius);
}

.world-switch > span {
  color: var(--on-dark-muted);
  font: 500 0.62rem/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.world-switch a {
  min-height: 44px;
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 9px 13px;
  background: var(--graphite-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.world-switch a:hover {
  border-color: rgba(217, 119, 87, 0.6);
}

.world-switch b {
  color: var(--terracotta);
  font: 600 0.55rem/1 var(--mono);
}

.world-switch i {
  color: var(--terracotta);
  font-style: normal;
}

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

.project-card {
  min-height: 540px;
  display: grid;
  grid-template-rows: 0.95fr auto;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--graphite);
  border: 1px solid rgba(32, 40, 37, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 100px rgba(16, 18, 18, 0.2);
}

.project-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.3fr) minmax(350px, 0.7fr);
  grid-template-rows: none;
  min-height: 470px;
}

.project-card--reverse {
  grid-template-columns: minmax(350px, 0.72fr) minmax(0, 1.28fr);
}

.project-card--reverse figure {
  order: 2;
}

.project-card figure {
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #0b0c0d;
}

.project-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 500ms ease, opacity 180ms ease;
}

.project-card:hover figure img {
  transform: scale(1.025);
  opacity: 1;
}

.project-copy {
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
}

.project-copy h3 {
  margin: 14px 0 13px;
  font-size: clamp(1.6rem, 2.8vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1;
}

.project-copy p {
  max-width: 600px;
  color: var(--on-dark-muted);
  font-size: 0.84rem;
}

.project-copy ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 10px 0 25px;
  color: var(--on-dark-muted);
  list-style: none;
  font-size: 0.69rem;
}

.project-copy li::before {
  margin-right: 8px;
  color: var(--terracotta);
  content: "·";
}

.project-copy > b {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.72rem;
}

.project-card--signal {
  background:
    linear-gradient(rgba(217, 119, 87, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 119, 87, 0.04) 1px, transparent 1px),
    var(--graphite);
  background-size: 100% 36px, 36px 100%, auto;
}

.signal-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.signal-visual span {
  position: relative;
  z-index: 2;
  color: var(--on-dark);
  font-size: clamp(4.2rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
}

.signal-visual span::first-letter {
  color: var(--terracotta);
}

.signal-visual i {
  position: absolute;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(217, 119, 87, 0.17);
  border-radius: 50%;
}

.signal-visual i:nth-of-type(2) {
  width: 54%;
  height: 54%;
}

.signal-visual i:nth-of-type(3) {
  width: 36%;
  height: 36%;
}

.signal-visual i:nth-of-type(4) {
  width: 12px;
  height: 12px;
  top: 17%;
  right: 23%;
  background: var(--terracotta);
  box-shadow: 0 0 0 8px rgba(217, 119, 87, 0.11);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.about-photo {
  --photo-left-bleed: 7vw;
  position: relative;
  margin-left: calc(-1 * var(--photo-left-bleed));
}

.about-photo::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 18, 20, 0.8));
  content: "";
}

.about-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.82) contrast(1.03);
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
}

.about-photo span {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 22px;
  left: calc(25px + var(--photo-left-bleed));
  color: rgba(252, 250, 243, 0.67);
  font: 500 0.62rem/1.45 var(--mono);
  overflow-wrap: anywhere;
}

.about h2 {
  color: var(--on-dark);
}

.about-lead {
  max-width: 720px;
  margin: 26px 0 34px;
  color: var(--on-dark-muted);
  font-size: 1rem;
}

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

.career-path li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
}

.career-path li > b {
  color: var(--terracotta);
  font: 600 0.58rem/1 var(--mono);
}

.career-path li div {
  display: grid;
  gap: 3px;
}

.career-path li strong {
  font-size: 0.9rem;
}

.career-path li span {
  color: var(--on-dark-muted);
  font-size: 0.72rem;
}

.career-path li small {
  color: var(--on-dark-muted);
  font: 500 0.6rem/1 var(--mono);
}

.about-close {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--on-dark);
  font-size: 1.02rem;
  font-weight: 600;
}

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

.now-list article {
  display: grid;
  grid-template-columns: 55px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
}

.now-list article > span {
  color: var(--terracotta-deep);
  font: 600 0.62rem/1 var(--mono);
}

.now-list h3 {
  margin: 0 0 5px;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  letter-spacing: -0.04em;
}

.now-list p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.now-list a {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-underline-offset: 5px;
}

.now-list a b {
  color: var(--terracotta-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 0.75fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.contact h2 {
  color: var(--on-dark);
}

.contact h2 + p {
  max-width: 610px;
  margin-top: 25px;
  color: var(--on-dark-muted);
}

.newsletter-form {
  display: grid;
  gap: 17px;
  padding: 30px;
  background: var(--graphite-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
}

.newsletter-form label:not(.consent):not(.honeypot) {
  display: grid;
  gap: 6px;
}

.newsletter-form label > span {
  color: var(--on-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--on-dark);
  background: rgba(252, 250, 243, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
}

.newsletter-form input::placeholder {
  color: rgba(252, 250, 243, 0.62);
}

.newsletter-form input:focus {
  border-color: var(--terracotta);
}

.consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--on-dark-muted);
  font-size: 0.66rem;
}

.consent input {
  flex: 0 0 auto;
  margin-top: 3px;
  accent-color: var(--terracotta);
}

.consent a {
  color: var(--terracotta);
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.2em;
  margin: -4px 0 0;
  color: #ef9b7f;
  font-size: 0.7rem;
}

.newsletter-form .button {
  width: 100%;
}

.newsletter-form .button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.contact-success {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: var(--graphite-soft);
  border: 1px solid rgba(79, 179, 167, 0.35);
  border-radius: var(--radius);
}

.contact-success h3 {
  margin: 0;
  font-size: 2rem;
}

.contact-success p {
  color: var(--on-dark-muted);
}

.contact-success .button {
  width: fit-content;
}

.site-footer {
  min-height: 130px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 30px max(32px, calc((100% - 1280px) / 2));
  color: var(--on-dark);
  background: #0c0d0f;
  border-top: 1px solid var(--line-dark);
}

.site-footer > div {
  display: grid;
  gap: 12px;
}

.site-footer p {
  margin: 0;
  color: rgba(252, 250, 243, 0.66);
  font: 500 0.58rem/1 var(--mono);
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a,
.site-footer nav button {
  padding: 0;
  border: 0;
  color: var(--on-dark-muted);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.69rem;
}

.noscript {
  padding: 20px;
  margin: 0;
  color: var(--on-dark);
  background: var(--graphite);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid {
    width: min(100% - 48px, 1100px);
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 7vw, 6rem);
  }

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

  .route-card:first-child {
    grid-column: 1 / -1;
    min-height: 290px;
  }

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

  .project-card--wide {
    grid-template-columns: 1fr 0.8fr;
  }

  .about-grid {
    gap: 60px;
  }

  .about-photo {
    --photo-left-bleed: 32px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    justify-self: end;
    min-height: 38px;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 7px 10px;
    color: var(--on-dark);
    background: transparent;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-small);
    cursor: pointer;
    font-size: 0.65rem;
    font-weight: 700;
  }

  .menu-toggle i {
    width: 16px;
    height: 11px;
    display: block;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
  }

  .site-nav {
    position: fixed;
    z-index: 105;
    top: var(--header-height);
    right: 0;
    width: min(360px, calc(100% - 34px));
    height: calc(100svh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 24px;
    background: var(--graphite-soft);
    border-left: 1px solid var(--line-dark);
    transform: translateX(102%);
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.8rem;
  }

  .site-nav .header-cta {
    justify-content: center;
    margin-top: 18px;
    border-bottom: 1px solid rgba(217, 119, 87, 0.52);
  }

  .menu-overlay {
    position: fixed;
    z-index: 95;
    inset: 0;
    display: block;
    visibility: hidden;
    background: rgba(5, 6, 7, 0.68);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .menu-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  html.has-open-menu {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding: 58px 0 65px;
  }

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

  .hero-system {
    width: min(560px, 86vw);
    justify-self: center;
    margin-top: 15px;
  }

  .experience-strip {
    grid-template-columns: 1fr 1fr;
  }

  .experience-strip span:nth-child(2) {
    border-right: 0;
  }

  .experience-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section-heading--split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .method-path {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }

  .method-path::before {
    display: none;
  }

  .method-callout {
    grid-template-columns: 1fr;
  }

  .network-map {
    grid-template-columns: 1fr 1fr;
  }

  .network-card--current {
    grid-column: 1 / -1;
    min-height: 210px;
  }

  .world-switch {
    grid-template-columns: 1fr 1fr;
  }

  .world-switch > span {
    grid-column: 1 / -1;
  }

  .project-card--wide,
  .project-card--reverse {
    grid-template-columns: 1fr;
    grid-template-rows: 320px auto;
  }

  .project-card--reverse figure {
    order: 0;
  }

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

  .about-photo {
    --photo-left-bleed: 32px;
    width: min(720px, calc(100% + 64px));
    margin: 0 0 0 calc(-1 * var(--photo-left-bleed));
  }

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

@media (max-width: 680px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .brand__copy small {
    display: none;
  }

  .hero-grid,
  .section-shell {
    width: calc(100% - 34px);
  }

  .hero-grid {
    padding-top: 38px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    text-align: center;
  }

  .brand__symbol {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .hero-system {
    width: 100%;
    padding: 16px;
  }

  .hero-system__mark {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 340px;
    padding: 10px 0 24px;
    text-align: center;
  }

  .hero-system__mark img {
    width: min(220px, 72%);
  }

  .hero-system__mark strong {
    max-width: 290px;
    justify-self: center;
  }

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

  .hero-system__path li:nth-child(2) {
    border-right: 0;
  }

  .hero-system__path li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .experience-strip {
    grid-template-columns: 1fr;
  }

  .experience-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .experience-strip span:last-child {
    border-bottom: 0;
  }

  .section-shell {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .method-path {
    grid-template-columns: 1fr 1fr;
  }

  .route-grid,
  .network-map,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .route-card:first-child,
  .network-card--current,
  .project-card--wide {
    grid-column: auto;
  }

  .network-card {
    min-height: 235px;
  }

  .world-switch {
    grid-template-columns: 1fr;
  }

  .world-switch > span {
    grid-column: auto;
  }

  .route-card {
    min-height: 310px;
    padding: 25px;
  }

  .project-card {
    min-height: 0;
  }

  .project-card--wide,
  .project-card--reverse {
    grid-template-rows: 240px auto;
  }

  .project-copy {
    padding: 25px;
  }

  .about-photo {
    --photo-left-bleed: 17px;
    width: calc(100% + 34px);
    margin-left: calc(-1 * var(--photo-left-bleed));
  }

  .about-photo img {
    border-radius: 0;
  }

  .career-path li {
    grid-template-columns: 28px 1fr;
  }

  .career-path li small {
    grid-column: 2;
  }

  .now-list article {
    grid-template-columns: 34px 1fr;
  }

  .now-list article > a {
    grid-column: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    padding: 23px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 18px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
