:root {
  --bg-shell: #000000;
  --panel-bg: #0d0f14;
  --panel-border: rgba(255, 255, 255, 0.08);
  --text-main: #e8eaed;
  --text-soft: #a6a9b2;
  --grid-gap: 10px;
  --fs-nav-brand: 18px;
  --fs-nav-item: 12px;
  --fs-label: 10px;
  --fs-hero-title: 56px;
  --fs-metric-xl: 64px;
  --fs-body: 14px;
  --fs-body-sm: 12px;
  --fs-meta: 10px;
  --fs-tile-placeholder: 16px;
  --fs-tile-title: clamp(42px, 3.1vw, 54px);
  --fs-tile-copy: calc(var(--fs-label) + 5.33px);
  --tile-stack-gap: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg-shell);
  color: #111;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
}

.page-scroll {
  min-height: 100%;
}

.page-section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section {
  padding: 40px;
}

.hero-shell {
  width: min(1800px, calc(100vw - 80px));
  height: calc(100vh - 80px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #000000;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(24px, 4vw, 64px) clamp(24px, 4vw, 64px) clamp(24px, 4vw, 64px) clamp(24px, 4vw, 64px);
  position: relative;
  overflow: hidden;
}

.hero-title {
  margin: 0;
  font-family: "Blinker", sans-serif;
  font-weight: 300;
  letter-spacing: 0.065em;
  font-size: clamp(82px, 9.2vw, 168px);
  line-height: 0.9;
  white-space: nowrap;
  color: #f2f5ff;
  text-shadow:
    0 0 14px rgba(124, 153, 255, 0.4),
    0 0 36px rgba(124, 153, 255, 0.25),
    0 0 70px rgba(124, 153, 255, 0.12);
}

.hero-subtitle {
  margin: 14px 0 0;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 400;
  color: #b9bec8;
  transition: opacity 0.16s ease;
}

.hero-subtitle.is-flash {
  animation: subtitleFlash 0.45s ease;
}

.hero-moon {
  position: absolute;
  left: 50%;
  bottom: -88%;
  width: min(1480px, 118vw);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: url("./moon-texture.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.05) contrast(1.08) brightness(0.9);
  box-shadow: none;
  z-index: 1;
  animation:
    moonDrift 24s ease-in-out infinite alternate,
    moonGlow 9s ease-in-out infinite;
}

.hero-title,
.hero-subtitle {
  position: relative;
  z-index: 3;
}

.hero-scroll-indicator {
  position: absolute;
  right: clamp(18px, 2vw, 30px);
  bottom: clamp(18px, 2.2vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(226, 232, 245, 0.75);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  z-index: 4;
}

.hero-scroll-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll-arrow {
  font-size: 14px;
  line-height: 1;
  opacity: 0.9;
  animation: heroArrowBounce 2.2s ease-in-out infinite;
}

.hero-scroll-indicator:hover,
.hero-scroll-indicator:focus-visible {
  border-color: rgba(220, 230, 248, 0.4);
  color: rgba(237, 242, 255, 0.92);
  outline: none;
}

.dashboard-page {
  padding: 20px 0;
}

.timeline-page {
  padding: 20px 0;
}

.contact-page {
  padding: 20px 0;
}

.section-shell {
  width: min(1800px, calc(100vw - 80px));
  height: calc(100vh - 40px);
  margin: 20px auto;
}

.dashboard-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.career-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.section-kicker {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-label);
  color: #4e5564;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows:
    calc((100% - var(--grid-gap)) * 0.5824)
    calc((100% - var(--grid-gap)) * 0.4176);
  gap: var(--grid-gap);
  height: calc(100% - 22px);
  padding: 0;
  min-height: 0;
}

.panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  padding: 22px;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.panel-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.contact-title {
  margin: 0;
  font-family: "Blinker", sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0.02em;
  color: #eef2fb;
}

.contact-links {
  display: grid;
  gap: 10px;
  width: min(980px, 100%);
}

.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #d7def1;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(222, 232, 255, 0.5);
  box-shadow: 0 0 16px rgba(170, 196, 246, 0.16);
  outline: none;
}

.contact-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f0f4ff;
}

.contact-url {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #bfc8dc;
}

.panel-label,
.terminal-line,
.coord {
  font-family: "JetBrains Mono", monospace;
}

.tile-label {
  margin: 0;
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afb2bc;
}

.tile-title {
  margin: 0;
  font-family: "Blinker", sans-serif;
  font-size: var(--fs-tile-title);
  line-height: 0.9;
  letter-spacing: -0.01em;
  font-weight: 300;
  color: #f0f2f6;
}

.tile-copy {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: var(--fs-tile-copy);
  line-height: 1.25;
  font-weight: 400;
  color: #bcc0ca;
}

.tile-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--tile-stack-gap);
}

.panel-intro {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1)),
    #0d0f14;
}

.panel-intro .tile-stack {
  margin-top: 0;
  height: 100%;
  width: 100%;
  gap: var(--tile-stack-gap);
}

.competency-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  margin-left: 0;
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.competency-list p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: var(--fs-label);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #afb2bc;
  padding: 8px 0;
  min-height: auto;
  flex: initial;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.effort-title {
  font-size: var(--fs-tile-title);
  line-height: 0.9;
  font-weight: 300;
  color: #f0f2f6;
  align-self: flex-start;
}

.terminal-line {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-size: var(--fs-meta);
  color: #9095a1;
}

.panel-connections {
  grid-column: span 2;
  isolation: isolate;
}

.connections-head {
  max-width: none;
  width: 100%;
  height: 100%;
}

.connections-head .tile-copy {
  max-width: 76%;
}

.city-groups {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0;
  align-items: stretch;
}

.city-group {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 6px;
  min-height: 126px;
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 32.2%;
}

.city-subcols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.city-subcol {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.city-subcol p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: var(--fs-label);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #afb2bc;
  padding: 3px 0;
}

.city-group-label {
  color: #e0e5ef;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.map-stage {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  z-index: 1;
}

.map-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 20, 0.72) 0%,
    rgba(12, 14, 20, 0.5) 34%,
    rgba(12, 14, 20, 0.55) 100%
  );
}

.world-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("./world-dotted-map.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 102% auto;
  opacity: 0.82;
  filter: none;
  animation: none;
  z-index: 1;
}

.panel-placeholder {
  display: grid;
  place-items: center;
  color: #8f95a1;
  font-size: var(--fs-tile-placeholder);
  min-height: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.panel-partnership {
  display: flex;
  flex-direction: column;
}

.partnership-treemap {
  margin-top: auto;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 6px;
}

.treemap-block {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #3c4149;
  min-width: 0;
}

.tm-mantle { grid-column: 1 / 7; grid-row: 1 / 5; background: #555b66; }
.tm-ronin { grid-column: 7 / 13; grid-row: 1 / 5; background: #4e5460; }
.tm-compound { grid-column: 1 / 5; grid-row: 5 / 9; background: #484e59; }
.tm-arbitrum { grid-column: 5 / 9; grid-row: 5 / 9; background: #434954; }
.tm-optimism { grid-column: 9 / 12; grid-row: 5 / 9; background: #3e444f; }
.tm-uniswap { grid-column: 12 / 13; grid-row: 5 / 9; background: #383e48; }

.tm-name {
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  color: #d8dde7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tm-value {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #f1f3f7;
}

.panel-impact {
  display: flex;
  flex-direction: column;
}

.panel-investments {
  display: flex;
  flex-direction: column;
}

.investment-list {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 8px;
}

.investment-list p {
  margin: 0;
  padding: 3px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: var(--fs-label);
  line-height: 1.25;
  color: #aeb5c2;
}

.impact-value {
  color: #f1f3f7;
}

.impact-sub {
  color: #b7bcc7;
}

.impact-bar {
  margin-top: auto;
  width: 100%;
  height: 28px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-segment-block {
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #4f545d;
  color: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.22s ease, box-shadow 0.22s ease;
}

.impact-segment-block:nth-child(1) {
  background: #5c6068;
}

.impact-segment-block:nth-child(2) {
  background: #4a4f58;
}

.impact-segment-block:nth-child(3) {
  background: #3f444d;
}

.timeline-shell {
  height: calc(100vh - 40px);
}

.panel-timeline {
  position: relative;
  display: block;
  padding: 8px 6px 8px;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.timeline-track {
  position: absolute;
  left: 50%;
  top: 4px;
  bottom: 4px;
  width: 2px;
  transform: translateX(-50%);
}

.timeline-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(232, 239, 255, 0.86);
  box-shadow:
    0 0 10px rgba(206, 220, 252, 0.45),
    0 0 22px rgba(160, 191, 255, 0.2);
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(252, 254, 255, 0.98), rgba(214, 228, 255, 0.74));
  box-shadow: 0 0 14px rgba(220, 232, 255, 0.55);
}

.timeline-progress::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(241, 246, 255, 0.76);
  box-shadow: 0 0 8px rgba(199, 215, 247, 0.34);
}

.timeline-year-mark {
  position: absolute;
  left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #8f96a6;
  transform: translateY(-50%);
}

.timeline-year-mark.y2026 { top: 0%; }
.timeline-year-mark.y2025 { top: 20%; }
.timeline-year-mark.y2024 { top: 40%; }
.timeline-year-mark.y2023 { top: 60%; }
.timeline-year-mark.y2022 { top: 80%; }
.timeline-year-mark.y2021 { top: 100%; transform: translateY(-100%); }

.timeline-track::after {
  content: "Current";
  position: absolute;
  left: 10px;
  top: -14px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #cfd8ec;
}

.timeline-role-spans {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.timeline-role-span {
  position: absolute;
  top: calc(var(--start) * 1%);
  height: calc((var(--end) - var(--start)) * 1%);
  width: 1px;
  min-height: 1px;
  background: rgba(165, 176, 197, 0.32);
}

.timeline-role-span.left {
  left: calc(50% - 11px);
}

.timeline-role-span.right {
  left: calc(50% + 11px);
}

.timeline-role-span::before,
.timeline-role-span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 1px;
  background: rgba(165, 176, 197, 0.4);
  transform: translateX(-50%);
}

.timeline-role-span::before {
  top: 0;
}

.timeline-role-span::after {
  bottom: 0;
}

.timeline-items {
  display: grid;
  gap: 10px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(44px, 5vw) minmax(0, 1fr);
  column-gap: 14px;
  position: relative;
  min-height: max(96px, calc(var(--role-span, 36px) + 24px));
  align-items: start;
}

.timeline-segment {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: var(--role-span, 36px);
  background: rgba(180, 190, 210, 0.45);
  box-shadow: none;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.timeline-left .timeline-segment {
  left: calc(50% - 11px);
}

.timeline-right .timeline-segment {
  left: calc(50% + 11px);
}

.timeline-segment::before,
.timeline-segment::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 10px;
  height: 1px;
  border-radius: 0;
  background: rgba(188, 197, 216, 0.68);
  transform: translateX(-50%);
  box-shadow: none;
}

.timeline-segment::before {
  top: -1px;
}

.timeline-segment::after {
  bottom: -1px;
}

.timeline-connector {
  content: "";
  position: absolute;
  top: var(--connector-top, 50%);
  height: 1px;
  background: rgba(174, 186, 212, 0.34);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-left .timeline-connector {
  right: calc(50% + 11px);
  width: 42px;
}

.timeline-right .timeline-connector {
  left: calc(50% + 11px);
  width: 42px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: var(--connector-top, 50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(238, 244, 255, 0.98);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(201, 219, 252, 0.55);
}

.timeline-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 12px;
  width: min(100%, 560px);
  position: relative;
}

.timeline-left .timeline-card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline-right .timeline-card {
  grid-column: 3;
  justify-self: start;
  text-align: left;
}

.timeline-item-capital {
  margin-top: -16px;
}

.timeline-type,
.timeline-impact {
  margin: 0;
  font-size: var(--fs-label);
  line-height: 1.3;
}

.timeline-type {
  font-family: "JetBrains Mono", monospace;
  color: #b4bbca;
}

.timeline-role {
  margin: 4px 0 0;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.1;
  color: #eef1f8;
}

.timeline-impact {
  margin-top: 4px;
  color: #929aaa;
  font-family: "DM Sans", sans-serif;
}

.timeline-logo {
  position: absolute;
  top: 44px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 18, 24, 0.95);
  color: #dbe3f5;
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  transform: translateY(-50%);
  overflow: hidden;
}

.timeline-left .timeline-logo {
  right: -13px;
}

.timeline-right .timeline-logo {
  left: -13px;
}

.timeline-logo img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
}

.impact-segment-block:hover,
.impact-segment-block:focus-visible,
.impact-segment-block.is-active {
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.44),
    0 0 14px rgba(124, 153, 255, 0.34),
    0 0 32px rgba(124, 153, 255, 0.2);
  outline: none;
}

.impact-spec {
  margin-top: 8px;
  width: 100%;
  font-family: "JetBrains Mono", monospace;
}

.impact-ruler {
  position: relative;
  height: 12px;
  border-top: 1px solid rgba(196, 202, 214, 0.35);
}

.impact-tick {
  position: absolute;
  top: -1px;
  width: 1px;
  height: 9px;
  background: rgba(225, 230, 240, 0.65);
}

.tick-0 { left: 0%; }
.tick-230 { left: 30.6667%; }
.tick-530 { left: 70.6667%; }
.tick-750 { left: 100%; transform: translateX(-1px); }

.impact-total {
  margin: 0;
  font-size: 11px;
  color: #aeb5c2;
  letter-spacing: 0.02em;
}

.impact-measures {
  margin-top: 4px;
  display: grid;
  gap: 2px;
}

.impact-measures p {
  margin: 0;
  font-size: 10px;
  color: #8f97a6;
  line-height: 1.25;
}

.impact-measures p.is-active {
  color: #e5ebfb;
  text-shadow:
    0 0 8px rgba(124, 153, 255, 0.34),
    0 0 18px rgba(124, 153, 255, 0.2);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes drift {
  0% { transform: translateX(-1.2%) translateY(0.5%); }
  100% { transform: translateX(1.2%) translateY(-0.5%); }
}

@keyframes subtitleFlash {
  0% { opacity: 0.2; filter: brightness(1.8); }
  25% { opacity: 1; filter: brightness(2.6); }
  100% { opacity: 1; filter: brightness(1); }
}

@keyframes moonDrift {
  0% {
    transform: translateX(-50%) translateY(0%) rotate(0deg) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(-1.1%) rotate(0.35deg) scale(1.012);
  }
}

@keyframes moonGlow {
  0%, 100% {
    filter: grayscale(0.05) contrast(1.08) brightness(0.9);
  }
  50% {
    filter: grayscale(0.05) contrast(1.1) brightness(0.94);
  }
}

@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

}

@media (max-width: 1440px) {
  .page-section {
    min-height: auto;
    scroll-snap-stop: normal;
  }

  .hero-section {
    padding: 16px 12px 10px;
  }

  .hero-shell {
    width: min(1800px, calc(100vw - 24px));
    height: auto;
    min-height: 44vh;
  }

  .section-shell {
    width: min(1800px, calc(100vw - 24px));
    margin: 16px auto;
    height: auto;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0;
    min-height: auto;
    height: auto;
  }

  .panel-connections {
    grid-column: auto;
  }

  .timeline-shell {
    height: auto;
  }

}

@media (max-width: 900px) {
  .hero-section {
    padding: 8px;
  }

  .hero-shell {
    width: calc(100vw - 16px);
    border-radius: 18px;
    min-height: 38vh;
    padding: 16px;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-subtitle {
    font-size: clamp(14px, 4vw, 18px);
  }

  .hero-moon {
    width: 165vw;
    bottom: -106%;
  }

  .section-shell {
    width: calc(100vw - 16px);
    margin: 8px auto;
    height: auto;
  }

  .panel {
    border-radius: 18px;
    padding: 14px;
  }

  .panel-intro h1 {
    font-size: 34px;
  }

  .competency-list p {
    padding: 8px 0;
  }

  .tile-copy {
    font-size: 12px;
  }

  .impact-sub {
    font-size: 11px;
  }

  .city-groups {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .city-group {
    min-height: 0;
  }

  .impact-bar {
    height: 22px;
  }

  .impact-total {
    font-size: 10px;
  }

  .impact-measures p {
    font-size: 9px;
  }

  .contact-title {
    font-size: clamp(34px, 11vw, 56px);
  }

  .contact-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-url {
    font-size: 14px;
  }

  .panel-timeline {
    padding-left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding-left: 20px;
  }

  .timeline-track {
    left: 8px;
    transform: none;
  }

  .timeline-role-span.left,
  .timeline-role-span.right {
    left: 8px;
  }

  .timeline-segment {
    left: 8px;
    transform: translateY(-50%);
  }

  .timeline-year-mark,
  .timeline-track::after {
    left: 14px;
  }

  .timeline-left .timeline-card,
  .timeline-right .timeline-card {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .timeline-left .timeline-logo,
  .timeline-right .timeline-logo {
    left: -13px;
    right: auto;
  }

  .timeline-connector {
    left: 8px;
    top: 50%;
    width: 12px;
  }

  .timeline-item::after {
    left: 8px;
    transform: translateY(-50%);
  }

}
