:root {
  --ink: #151713;
  --night: #11130f;
  --night-2: #191c17;
  --night-3: #20241e;
  --paper: #f5f1e8;
  --paper-2: #e8e1d4;
  --muted: #a9aa9f;
  --line: rgba(245, 241, 232, 0.16);
  --line-strong: rgba(245, 241, 232, 0.28);
  --lime: #d7ea55;
  --coral: #ee7456;
  --blue: #7ab8c8;
  --violet: #b7a5f3;
  --shadow: rgba(0, 0, 0, 0.35);
  --shell: 1180px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--night);
  color-scheme: dark;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(21, 23, 19, 0.94), var(--night) 34rem),
    var(--night);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

a {
  color: inherit;
}

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

img,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: 5.6rem;
  font-weight: 500;
  line-height: 0.95;
}

h2 {
  margin-bottom: 1.25rem;
  font-family: var(--serif);
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1.15;
}

h1 em,
h2 em {
  color: var(--lime);
  font-style: italic;
  font-weight: 500;
}

.shell {
  width: calc(100% - 64px);
  max-width: var(--shell);
  margin-left: auto;
  margin-right: auto;
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--lime);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 78px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 15, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 230px;
  width: fit-content;
  text-decoration: none;
}

.brand-mark,
.footer-brand {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy b {
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-copy small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 1.05rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  gap: 0.4rem;
  margin-left: 0.9rem;
  text-decoration: none;
}

.site-nav a:first-child {
  margin-left: 0;
}

.site-nav a span {
  margin-left: 0.25rem;
  color: var(--paper);
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a:hover span,
.site-nav a.active span {
  color: var(--lime);
}

.language-switcher {
  display: flex;
  flex: 0 0 auto;
  gap: 0.25rem;
  justify-self: end;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.language-switcher a {
  min-width: 2rem;
  margin-left: 0.25rem;
  padding: 0.42rem 0.48rem;
  border: 1px solid transparent;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a.active {
  border-color: var(--line);
  color: var(--lime);
}

.language-switcher a:first-child {
  margin-left: 0;
}

.menu-toggle {
  display: none;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dot,
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.42rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(215, 234, 85, 0.12);
  vertical-align: 1px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 0.76rem;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

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

.button span,
.text-link span {
  margin-left: 0.25rem;
}

.button-lime {
  background: var(--lime);
  color: var(--ink);
}

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

.button-ghost {
  border-color: var(--line-strong);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.85rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 0.85rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.social-links a {
  text-decoration: none;
}

.social-links a:hover {
  color: var(--lime);
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  width: fit-content;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.3rem;
}

.text-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.profile-metrics {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.6rem 0 1.2rem;
}

.metric-card {
  flex: 1 1 180px;
  min-height: 108px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(217, 247, 75, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.025);
}

.metric-card b {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.metric-card span {
  color: var(--paper-2);
  font-size: 0.92rem;
  line-height: 1.45;
}

.evidence-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 12px rgba(255, 112, 88, 0.36);
}

.case-points {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.15rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
}

.case-points.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-points div {
  flex: 1 1 160px;
  display: grid;
  gap: 0.25rem;
}

.case-points b {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.case-points span {
  display: block;
  color: var(--paper-2);
  font-size: 0.82rem;
  line-height: 1.45;
}

.lime-card .case-points,
.paper-card .case-points {
  border-color: rgba(21, 23, 19, 0.16);
  background: rgba(21, 23, 19, 0.08);
}

.lime-card .case-points b,
.paper-card .case-points b {
  color: rgba(21, 23, 19, 0.66);
}

.lime-card .case-points span,
.paper-card .case-points span {
  color: rgba(21, 23, 19, 0.74);
}

.section-pad {
  padding-block: 6rem;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  margin: 0.7rem 0 0;
}

.hero-home {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.96) 0%, rgba(17, 19, 15, 0.78) 38%, rgba(17, 19, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(17, 19, 15, 0.02) 0%, rgba(17, 19, 15, 0.82) 100%),
    url("../assets/hero-options/hero-alt-02-premium-simulation-lab.png") center / cover no-repeat,
    var(--night);
}

.hero-bg,
.hero-bg span,
.hero-bg::after {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  overflow: hidden;
  background: transparent;
}

.hero-bg span {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.025);
  animation: hero-background-cycle 24s ease-in-out infinite;
  will-change: opacity, transform;
}

.hero-bg span:nth-child(1) {
  opacity: 1;
  background-image: url("../assets/hero-options/hero-alt-02-premium-simulation-lab.png");
  animation-delay: 0s;
}

.hero-bg span:nth-child(2) {
  background-image: url("../assets/hero-options/hero-alt-03-computational-sculpture.png");
  animation-delay: 8s;
}

.hero-bg span:nth-child(3) {
  background-image: url("../assets/hero-options/hero-alt-01-blender-lab.png");
  animation-delay: 16s;
}

@supports (background-image: image-set(url("../assets/hero-options/hero-alt-02-premium-simulation-lab.webp") type("image/webp"))) {
  .hero-home {
    background:
      linear-gradient(90deg, rgba(17, 19, 15, 0.96) 0%, rgba(17, 19, 15, 0.78) 38%, rgba(17, 19, 15, 0.18) 72%),
      linear-gradient(180deg, rgba(17, 19, 15, 0.02) 0%, rgba(17, 19, 15, 0.82) 100%),
      image-set(
        url("../assets/hero-options/hero-alt-02-premium-simulation-lab.webp") type("image/webp"),
        url("../assets/hero-options/hero-alt-02-premium-simulation-lab.png") type("image/png")
      ) center / cover no-repeat,
      var(--night);
  }

  .hero-bg span:nth-child(1) {
    background-image: image-set(
      url("../assets/hero-options/hero-alt-02-premium-simulation-lab.webp") type("image/webp"),
      url("../assets/hero-options/hero-alt-02-premium-simulation-lab.png") type("image/png")
    );
  }

  .hero-bg span:nth-child(2) {
    background-image: image-set(
      url("../assets/hero-options/hero-alt-03-computational-sculpture.webp") type("image/webp"),
      url("../assets/hero-options/hero-alt-03-computational-sculpture.png") type("image/png")
    );
  }

  .hero-bg span:nth-child(3) {
    background-image: image-set(
      url("../assets/hero-options/hero-alt-01-blender-lab.webp") type("image/webp"),
      url("../assets/hero-options/hero-alt-01-blender-lab.png") type("image/png")
    );
  }
}

.hero-bg::after {
  content: "";
  background-image:
    linear-gradient(90deg, rgba(17, 19, 15, 0.96) 0%, rgba(17, 19, 15, 0.78) 38%, rgba(17, 19, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(17, 19, 15, 0.02) 0%, rgba(17, 19, 15, 0.82) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(220px, 360px);
  gap: 4rem;
  align-items: end;
  padding-block: 7rem 3.8rem;
}

.hero-copy {
  flex: 1 1 520px;
  max-width: 720px;
}

.hero-copy .eyebrow {
  margin-bottom: 1rem;
}

.hero-intro {
  max-width: 570px;
  margin: 0 0 1.7rem;
  color: var(--paper-2);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-facts {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.hero-fact {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-fact:last-child {
  border-bottom: 0;
}

.hero-fact b {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--lime);
  text-transform: uppercase;
}

.hero-fact span {
  color: var(--paper-2);
  font-size: 0.96rem;
}

.map-section {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 2rem;
  align-items: center;
}

.map-intro p {
  max-width: 470px;
  color: var(--paper-2);
  font-size: 1.02rem;
}

.map-intro {
  flex: 1 1 320px;
}

.field-map {
  position: relative;
  flex: 1 1 620px;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 8px;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 234, 85, 0.15), transparent 18rem),
    radial-gradient(circle at 25% 18%, rgba(122, 184, 200, 0.12), transparent 13rem),
    radial-gradient(circle at 82% 78%, rgba(238, 116, 86, 0.11), transparent 12rem),
    linear-gradient(rgba(245, 241, 232, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 241, 232, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 241, 232, 0.035), rgba(17, 19, 15, 0.66) 44%, rgba(17, 19, 15, 0.96)),
    var(--night-2);
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto, auto;
  overflow: hidden;
  box-shadow: 0 22px 80px var(--shadow);
}

.field-map::before,
.field-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.field-map::before {
  opacity: 0.82;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 560 500' preserveAspectRatio='none'%3E%3Cg fill='none' stroke='%237ab8c8' stroke-opacity='.24' stroke-width='1'%3E%3Cpath d='M24 116H124V80H225V140H315V105H525'/%3E%3Cpath d='M32 386H122v-54h120v40h90v-70h190'/%3E%3Cpath d='M95 28v95h48v92h-60v70h86v158'/%3E%3Cpath d='M468 38v82h-62v84h54v86h-96v155'/%3E%3C/g%3E%3Cg fill='none' stroke='%23d7ea55' stroke-opacity='.15' stroke-width='1'%3E%3Cpath d='M92 260C145 204 204 190 278 218s119 16 184-42'/%3E%3Cpath d='M72 306C150 258 215 256 272 284s122 33 218-10'/%3E%3Cpath d='M122 202C202 158 270 164 330 206s103 35 161-2'/%3E%3C/g%3E%3Cg fill='%23d7ea55' fill-opacity='.34'%3E%3Ccircle cx='124' cy='116' r='2.4'/%3E%3Ccircle cx='225' cy='140' r='2.4'/%3E%3Ccircle cx='315' cy='105' r='2.4'/%3E%3Ccircle cx='122' cy='386' r='2.4'/%3E%3Ccircle cx='332' cy='372' r='2.4'/%3E%3Ccircle cx='468' cy='120' r='2.4'/%3E%3C/g%3E%3C/svg%3E") center / cover no-repeat,
    repeating-radial-gradient(ellipse at center, transparent 0 55px, rgba(215, 234, 85, 0.06) 56px, transparent 58px);
  mix-blend-mode: screen;
}

.field-map::after {
  opacity: 0.56;
  background:
    linear-gradient(116deg, transparent 0 38%, rgba(215, 234, 85, 0.08) 48%, rgba(122, 184, 200, 0.06) 50%, transparent 62%),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(215, 234, 85, 0.11) 34.4% 34.8%, transparent 35.2% 43%, rgba(122, 184, 200, 0.09) 43.4% 43.8%, transparent 44.2%);
  mix-blend-mode: screen;
  animation: map-scan 13s ease-in-out infinite alternate;
}

.map-caption {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 1.1rem;
  left: 1.15rem;
  right: 1.15rem;
  z-index: 4;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
}

.map-lines {
  position: absolute;
  inset: 42px 0 38px;
  z-index: 1;
  width: 100%;
  height: calc(100% - 80px);
  overflow: visible;
}

.map-lines path {
  fill: none;
  stroke: rgba(215, 234, 85, 0.72);
  stroke-width: 1.3;
  stroke-dasharray: 4 7;
  animation: map-flow 18s linear infinite;
}

.map-lines .fine-line {
  stroke: rgba(238, 116, 86, 0.72);
  stroke-width: 0.9;
  stroke-dasharray: 2 8;
  animation-duration: 24s;
  animation-direction: reverse;
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 234, 85, 0.16), transparent 64%),
    rgba(17, 19, 15, 0.94);
  box-shadow:
    0 0 0 14px rgba(215, 234, 85, 0.04),
    0 0 58px rgba(215, 234, 85, 0.17),
    inset 0 0 28px rgba(122, 184, 200, 0.08);
  text-align: center;
}

.map-core span {
  display: block;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.map-core small {
  display: block;
  margin-top: -0.25rem;
  color: var(--paper-2);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.35;
}

.map-node {
  position: absolute;
  z-index: 2;
  max-width: 132px;
  padding: 0.68rem 0.72rem;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 14px;
  background: rgba(17, 19, 15, 0.5);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  line-height: 1.16;
}

.map-node i {
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(238, 116, 86, 0.13);
}

.map-node b {
  display: block;
  font-weight: 700;
}

.map-node small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.node-one {
  top: 15%;
  left: 8%;
}

.node-two {
  top: 11%;
  right: 7%;
}

.node-three {
  bottom: 11%;
  left: 6%;
}

.node-four {
  right: 5%;
  bottom: 12%;
}

.map-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(215, 234, 85, 0.17);
  border-radius: 50%;
  transform: rotate(-20deg);
  pointer-events: none;
}

.orbit-a {
  width: 310px;
  height: 180px;
  top: 31%;
  left: 21%;
}

.orbit-b {
  width: 270px;
  height: 145px;
  top: 36%;
  left: 26%;
  border-color: rgba(238, 116, 86, 0.2);
  transform: rotate(30deg);
}

.map-foot {
  position: absolute;
  bottom: 1rem;
  left: 1.15rem;
  z-index: 4;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.45;
}

.expertise-section {
  padding-block: 0 6rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.expertise-item {
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.055), rgba(245, 241, 232, 0.02));
}

.expertise-item b {
  display: block;
  margin: 1.1rem 0 0.55rem;
  font-size: 1.08rem;
}

.expertise-item p {
  margin: 0;
  color: var(--paper-2);
  font-size: 0.94rem;
}

.expertise-code {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.expertise-code::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.announcement-strip {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 130px 1fr 44px;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.strip-index,
.strip-main {
  font-family: var(--mono);
  font-size: 0.68rem;
}

.strip-index {
  color: var(--muted);
}

.strip-index span {
  color: var(--coral);
  margin-left: 0.3rem;
  margin-right: 0.3rem;
  margin-inline: 0.3rem;
}

.strip-main {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.strip-main b {
  font-weight: 700;
}

.strip-main > span:last-child {
  color: var(--muted);
}

.circle-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--lime);
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.circle-arrow:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.intro-section {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 170px minmax(0, 720px);
  gap: 3.5rem;
}

.section-aside {
  flex: 0 0 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 285px;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.section-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.vertical-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.intro-content h2 {
  margin-top: 0.75rem;
}

.intro-content {
  flex: 1 1 560px;
}

.body-lead {
  max-width: 660px;
  color: var(--paper-2);
  font-size: 1.16rem;
  line-height: 1.65;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.metric {
  flex: 1 1 180px;
  display: grid;
  gap: 0.28rem;
}

.metric strong {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
}

.metric span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

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

.work-grid {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px var(--shadow);
}

.work-card-dark {
  background: #242923;
  color: var(--paper);
}

.work-card-paper {
  background: var(--paper);
  color: var(--ink);
}

.work-card-lime {
  background: var(--lime);
  color: var(--ink);
}

.card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.card-arrow {
  font-size: 1rem;
}

.work-art {
  position: relative;
  min-height: 205px;
  margin: 1.8rem -1.2rem 1.4rem;
  overflow: hidden;
}

.work-visual {
  position: relative;
  min-height: 220px;
  margin: 1.4rem -1.2rem 1.35rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.work-visual img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.work-visual picture {
  display: block;
  height: 100%;
}

.work-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.visual-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.46rem 0.66rem;
  border: 1px solid rgba(245, 241, 232, 0.28);
  border-radius: 999px;
  background: rgba(17, 19, 15, 0.72);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.68rem;
  backdrop-filter: blur(10px);
}

.visual-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.work-card-image {
  background: var(--night-2);
  color: var(--paper);
  border: 1px solid var(--line);
}

.work-card-image p {
  max-width: 340px;
  opacity: 0.86;
}

.work-card-image .card-tags {
  color: var(--muted);
  opacity: 1;
}

.work-card-image:nth-child(2) {
  background: #20241f;
}

.work-card-image:nth-child(3) {
  background: #1b2022;
}

.work-card h3 {
  margin: 0 0 0.6rem;
}

.work-card p {
  margin: 0;
  max-width: 310px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.78;
}

.card-tags {
  margin-top: auto;
  padding-top: 1.4rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  opacity: 0.72;
  text-transform: uppercase;
}

.art-signal {
  background: linear-gradient(135deg, rgba(215, 234, 85, 0.16), rgba(122, 184, 200, 0.08));
}

.signal-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1.4rem;
}

.signal-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(215, 234, 85, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
}

.ring-1 {
  width: 140px;
  height: 75px;
}

.ring-2 {
  width: 240px;
  height: 120px;
  transform: translate(-50%, -50%) rotate(-30deg);
}

.ring-3 {
  width: 340px;
  height: 170px;
  transform: translate(-50%, -50%) rotate(11deg);
  opacity: 0.5;
}

.signal-path {
  position: absolute;
  height: 1px;
  width: 130%;
  left: -15%;
  top: 50%;
  background: var(--coral);
  transform: rotate(27deg);
  opacity: 0.7;
}

.path-2 {
  transform: rotate(-27deg);
  opacity: 0.35;
}

.art-scan {
  background: #d9d4c7;
}

.scan-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  color: rgba(21, 23, 19, 0.56);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.35;
}

.scan-spine {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 42px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent, rgba(21, 23, 19, 0.22), transparent);
  transform: translateX(-50%) rotate(7deg);
  filter: blur(5px);
}

.scan-line {
  position: absolute;
  width: 150%;
  left: -25%;
  height: 1px;
  background: rgba(21, 23, 19, 0.35);
  transform: rotate(-13deg);
}

.line-a {
  top: 52%;
}

.line-b {
  top: 64%;
  transform: rotate(16deg);
}

.scan-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--coral);
  border-radius: 50%;
}

.dot-a {
  left: 31%;
  top: 43%;
}

.dot-b {
  right: 25%;
  bottom: 23%;
}

.art-grid {
  background-color: rgba(21, 23, 19, 0.05);
  background-image:
    linear-gradient(rgba(21, 23, 19, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 23, 19, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.antenna-grid {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border: 1px solid var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}

.antenna-grid::before,
.antenna-grid::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px solid var(--ink);
}

.antenna-grid::after {
  inset: 32px;
}

.antenna-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wave-a {
  width: 195px;
  height: 195px;
  opacity: 0.55;
}

.wave-b {
  width: 290px;
  height: 290px;
  opacity: 0.3;
}

.antenna-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  line-height: 1.4;
  text-align: right;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-col {
  flex: 1 1 360px;
  min-height: 430px;
  padding: 2.5rem;
  border-radius: 8px;
}

.cv-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--coral);
  color: var(--ink);
}

.cv-preview h2,
.cv-preview h2 em {
  color: var(--ink);
}

.cv-preview .eyebrow {
  color: rgba(21, 23, 19, 0.67);
}

.round-stamp {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.2;
  text-align: center;
}

.body-copy {
  max-width: 360px;
  color: rgba(21, 23, 19, 0.72);
}

.notes-preview {
  background: var(--night-2);
  border: 1px solid var(--line);
}

.notes-preview .eyebrow {
  margin-bottom: 1.8rem;
}

.note-link {
  display: flex;
  display: grid;
  grid-template-columns: 45px 1fr 22px;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

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

.note-link b {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.note-link small {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.note-link i {
  color: var(--lime);
  font-style: normal;
}

.note-date {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 1.05rem;
  line-height: 0.92;
}

.note-date small {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.5rem;
}

.contact-section {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact-section h2 {
  max-width: 780px;
  margin-top: 1.6rem;
}

.contact-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-bottom p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  min-height: 104px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  width: 28px;
  height: 28px;
  font-size: 0.58rem;
  text-decoration: none;
}

.site-footer > div:nth-child(2) {
  gap: 1.2rem;
}

.site-footer > div:nth-child(2) a {
  margin-left: 1rem;
}

.site-footer > div:nth-child(2) a:first-child {
  margin-left: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lime);
}

.footer-note {
  justify-self: end;
}

.page-hero {
  padding-block: 6rem 3.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0.9rem 0 1.3rem;
}

.page-hero .page-lead {
  max-width: 650px;
  color: var(--paper-2);
  font-size: 1.12rem;
}

.page-body {
  padding-block: 4rem 7rem;
}

.page-grid {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 3rem;
}

.page-sidebar {
  flex: 0 0 190px;
  position: sticky;
  top: 105px;
  align-self: start;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.page-sidebar p {
  margin: 0 0 1rem;
  color: var(--paper);
}

.page-sidebar a {
  display: block;
  margin: 0.72rem 0;
  text-decoration: none;
}

.page-sidebar a:hover {
  color: var(--lime);
}

.page-main {
  flex: 1 1 620px;
  min-width: 0;
}

.page-main > *:first-child {
  margin-top: 0;
}

.page-main h2 {
  font-size: 3.25rem;
}

.page-main h3 {
  margin: 0 0 0.7rem;
}

.page-main p {
  max-width: 680px;
  color: var(--paper-2);
}

.data-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 4rem;
  border-top: 1px solid var(--line);
}

.data-item {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.data-item .data-label {
  flex: 0 0 150px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.data-item b {
  display: block;
  font-weight: 700;
}

.data-item small {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.publication-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

.publication-links .text-link,
.publication-footnote .text-link {
  color: var(--paper-2);
  font-size: 0.68rem;
}

.publication-footnote {
  margin-top: -2.4rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.4rem 0 2.7rem;
}

.tag {
  padding: 0.42rem 0.64rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-2);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.tag:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.skill-groups {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.skill-group {
  flex: 1 1 280px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.skill-group h3 {
  margin: 0 0 0.9rem;
  color: var(--paper);
  font-size: 1rem;
}

.skill-group .tag-cloud {
  margin: 0;
}

.work-card-lime .tag,
.lime-card .tag,
.paper-card .tag,
.work-card-paper .tag {
  border-color: rgba(21, 23, 19, 0.18);
  color: rgba(21, 23, 19, 0.72);
}

.page-card-grid {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.page-card {
  flex: 1 1 280px;
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night-2);
  text-decoration: none;
}

.page-card:hover {
  border-color: var(--lime);
}

.page-card .card-top {
  color: var(--muted);
}

.page-card h3 {
  margin-top: 3rem;
}

.page-card .work-visual + h3,
.data-item .work-visual + b {
  margin-top: 1rem;
}

.data-item .work-visual {
  margin-top: 0;
  border-radius: 8px;
}

.page-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.paper-card {
  background: var(--paper);
  color: var(--ink);
  border: 0;
}

.paper-card p {
  color: #5e6459;
}

.lime-card {
  background: var(--lime);
  color: var(--ink);
  border: 0;
}

.lime-card p {
  color: rgba(21, 23, 19, 0.72);
}

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

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline-year {
  flex: 0 0 125px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.timeline-item h3 {
  margin-bottom: 0.4rem;
}

.timeline-item p {
  margin: 0;
  font-size: 0.9rem;
}

.privacy-note {
  padding: 1.05rem 1.15rem;
  border-left: 3px solid var(--lime);
  border-radius: 0 8px 8px 0;
  background: rgba(215, 234, 85, 0.06);
  color: var(--paper-2);
  font-size: 0.94rem;
}

.privacy-note b {
  color: var(--lime);
  font-weight: 700;
}

.announcement-card {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

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

.announcement-date {
  flex: 0 0 140px;
  color: var(--coral);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.25;
}

.announcement-card h3 {
  margin: 0 0 0.5rem;
}

.announcement-card p {
  margin: 0;
  font-size: 0.97rem;
}

.announcement-card .circle-arrow {
  margin-top: 0.2rem;
}

.admin-layout {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-card {
  flex: 1 1 300px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night-2);
}

.admin-card h3 {
  margin: 0 0 1.3rem;
}

.status-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.status-line span {
  color: var(--muted);
}

.status-ok {
  color: var(--lime);
}

.admin-card label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.admin-card input,
.admin-card textarea,
.admin-card select {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  background: var(--night);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.9rem;
}

.admin-card textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-card input:focus,
.admin-card textarea:focus {
  border-color: var(--lime);
}

.admin-card .button {
  cursor: pointer;
}

.admin-hint {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.5;
}

.saved-message {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding-block: 6rem;
}

.error-panel {
  max-width: 680px;
}

.error-panel .links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    gap: 0.7rem;
  }

  .hero-inner,
  .map-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-bottom: 0;
  }

  .hero-fact {
    border-bottom: 0;
  }

  .field-map {
    min-height: 450px;
  }

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

  .work-card:last-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .shell {
    width: calc(100% - 36px);
  }

  h1 {
    font-size: 3.45rem;
  }

  h2,
  .page-main h2 {
    font-size: 2.45rem;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.66rem;
    cursor: pointer;
  }

  .menu-toggle span {
    color: var(--lime);
    font-size: 1rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(25, 28, 23, 0.98);
    box-shadow: 0 22px 70px var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    margin-left: 0;
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
  }

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

  .language-switcher {
    grid-column: 1 / -1;
    justify-self: start;
    padding-bottom: 0.75rem;
  }

  .hero-home {
    min-height: 650px;
  }

  .hero-bg span {
    background-position: 62% center;
  }

  .hero-bg::after {
    background-image:
      linear-gradient(180deg, rgba(17, 19, 15, 0.48) 0%, rgba(17, 19, 15, 0.72) 30%, rgba(17, 19, 15, 0.98) 74%),
      linear-gradient(90deg, rgba(17, 19, 15, 0.9) 0%, rgba(17, 19, 15, 0.52) 100%);
  }

  .hero-inner {
    padding-block: 5rem 2.5rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-fact:last-child {
    border-bottom: 0;
  }

  .announcement-strip {
    grid-template-columns: 1fr 40px;
    gap: 0.8rem;
    padding-block: 1rem;
  }

  .strip-index {
    grid-column: 1 / -1;
  }

  .strip-main {
    display: block;
  }

  .strip-main > span:last-child {
    display: block;
    margin-top: 0.35rem;
    padding-left: 1rem;
  }

  .intro-section,
  .page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-aside {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .vertical-label {
    writing-mode: initial;
    transform: none;
  }

  .page-sidebar {
    position: static;
  }

  .page-sidebar a {
    display: inline-block;
    margin-right: 1rem;
  }

  .metric-row,
  .profile-metrics,
  .expertise-grid,
  .work-grid,
  .page-card-grid,
  .skill-groups,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .case-points.compact {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card:last-child {
    min-height: 390px;
    grid-column: auto;
  }

  .work-visual img {
    height: 220px;
  }

  .split-col {
    min-height: 390px;
    padding: 1.5rem;
  }

  .contact-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    align-items: flex-start;
    width: 100%;
  }

  .social-links {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 2rem;
  }

  [id] {
    scroll-margin-top: 96px;
  }

  .footer-note {
    justify-self: start;
  }

  .announcement-card {
    grid-template-columns: 78px 1fr auto;
    gap: 1rem;
  }

  .data-item,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 3rem;
    line-height: 0.98;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 15vw, 3rem);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .error-panel .links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link,
  .error-panel .button {
    width: 100%;
  }

  .field-map {
    min-height: 390px;
  }

  .map-core {
    width: 94px;
    height: 94px;
  }

  .map-node {
    max-width: 106px;
  }

  .map-node b {
    font-size: 0.68rem;
  }

  .map-node small {
    font-size: 0.5rem;
  }

  .node-one,
  .node-three {
    left: 3%;
  }

  .node-two,
  .node-four {
    right: 3%;
  }

  .metric {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid var(--line);
  }

  .work-art {
    min-height: 180px;
  }

  .work-visual {
    min-height: 190px;
  }

  .work-visual img {
    height: 195px;
  }

  .expertise-item {
    min-height: 160px;
  }

  .announcement-card {
    grid-template-columns: 1fr auto;
  }

  .announcement-card .announcement-date {
    grid-column: 1 / -1;
  }

  .announcement-card .circle-arrow {
    grid-column: 2;
    grid-row: 2;
  }
}

@keyframes map-scan {
  0% {
    transform: translate3d(-12%, -2%, 0) scale(1);
    opacity: 0.34;
  }

  50% {
    transform: translate3d(5%, 1%, 0) scale(1.03);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(12%, -1%, 0) scale(1.01);
    opacity: 0.42;
  }
}

@keyframes map-flow {
  to {
    stroke-dashoffset: -88;
  }
}

@keyframes hero-background-cycle {
  0%,
  27% {
    opacity: 1;
    transform: scale(1.025);
  }

  34%,
  93% {
    opacity: 0;
    transform: scale(1.055);
  }

  100% {
    opacity: 1;
    transform: scale(1.025);
  }
}

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

  .button,
  .work-card {
    transition: none;
  }

  .field-map::after,
  .hero-bg span,
  .map-lines path {
    animation: none;
  }

  .hero-bg span:first-child {
    opacity: 1;
  }
}
