:root {
  color-scheme: light;
  --color-bg: #ffffff;
  --color-primary: #0b0b0b;
  --color-secondary: #4b4b4b;
  --color-muted: #8a8a8a;
  --color-icon-bg: #fbfaf8;
  --color-hover: #eeeeee;
  --color-border: #e5e5e5;
  --color-border-strong: #d9d9d9;
  --color-button-border: #cfcfcf;
  --color-timeline-rail: #d6d6d6;
  --color-accent: #ff7a59;
  --color-accent-soft: rgb(255 122 89 / 0.1);
  --color-accent-border: rgb(255 122 89 / 0.28);
  --color-dark: #0e0e0e;
  --color-dark-2: #151515;
  --color-dark-3: #303030;
  --color-light: #f5f5f5;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Space Grotesk", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1160px;
  --mobile-container: 346px;
  --page-pad: 22px;
  --radius-sm: 7px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --transition: 140ms ease;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  color: var(--color-primary);
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  font-synthesis: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.page-shell {
  width: min(100% - calc(var(--page-pad) * 2), var(--mobile-container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

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

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.site-header {
  padding-top: 28px;
}

.site-header__inner {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-family: var(--font-hero);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 22px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  width: 180px;
  flex: 0 0 auto;
  gap: 14px;
  justify-content: flex-end;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 19px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__link::after {
  width: 0;
  height: 1px;
  background: var(--color-primary);
  content: "";
  transition: width var(--transition);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  width: min(54px, 100%);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: 372px;
  flex-direction: column;
  justify-content: center;
  padding-block: 42px 48px;
}

.home-hero__copy {
  display: flex;
  max-width: 346px;
  flex-direction: column;
  gap: 18px;
}

.domain-hero {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: center;
  padding-block: 54px 48px;
}

.domain-hero > div {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  gap: 14px;
}

.domain-hero > div > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 24px;
}

h1 {
  color: var(--color-primary);
  font-family: var(--font-hero);
  font-size: 46px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.home-hero h1 {
  font-family: var(--font-hero);
  font-size: 42px;
  line-height: 44px;
}

.home-kicker {
  display: block;
  margin-bottom: -10px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--color-primary);
  font-family: var(--font-hero);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 28px;
  text-transform: none;
}

.hero-copy,
.project-intro p {
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 24px;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-signals li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding-inline: 10px;
  color: var(--color-primary);
  background: #fbfaf8;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}

.hero-cta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.hero-cta::after {
  content: "\2193";
  margin-left: 8px;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.hero-cta:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-cta:hover::after {
  transform: translateY(3px);
}

.profile-picture {
  position: absolute;
  top: 14px;
  right: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-icon-bg);
}

.profile-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-strip {
  margin-bottom: 28px;
  padding-block: 18px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.proof-strip__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.proof-strip__list li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.proof-strip__list strong {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

.proof-strip__list span {
  color: var(--color-secondary);
  font-size: 13px;
  line-height: 18px;
}

.global-footprint {
  display: grid;
  gap: 26px;
  padding-block: 20px 40px;
}

.global-footprint__intro {
  display: grid;
  gap: 8px;
}

.global-footprint__kicker {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 16px;
  text-transform: uppercase;
}

.global-footprint__intro h2 {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-hero);
  font-size: 30px;
  font-weight: 600;
  line-height: 34px;
}

.global-footprint__intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 22px;
}

.global-footprint__figure {
  display: grid;
  gap: 22px;
  margin: 0;
}

.global-footprint__map {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.global-footprint__grid path {
  fill: none;
  stroke: var(--color-border);
  stroke-dasharray: 2 10;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.global-footprint__connections path {
  fill: none;
  opacity: 0.46;
  stroke: var(--color-accent);
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.global-footprint__halo {
  fill: var(--color-accent);
  opacity: 0.18;
}

.global-footprint__pin {
  fill: var(--color-accent);
  stroke: var(--color-bg);
  stroke-width: 2.5;
  vector-effect: non-scaling-stroke;
}

.global-footprint__pin-core {
  fill: var(--color-bg);
}

.global-footprint__leader {
  display: none;
  fill: none;
  stroke: var(--color-primary);
  stroke-linecap: round;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.global-footprint__label {
  display: none;
}

.global-footprint__label rect {
  fill: var(--color-bg);
  stroke: var(--color-border-strong);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.global-footprint__label text {
  fill: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.global-footprint__locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--color-border);
  list-style: none;
}

.global-footprint__locations li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.global-footprint__locations li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.global-footprint__locations span {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 15px;
  text-transform: uppercase;
}

.global-footprint__locations strong {
  overflow-wrap: anywhere;
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.global-footprint__locations small {
  color: var(--color-secondary);
  font-size: 11px;
  line-height: 17px;
}

.index-section {
  padding-top: 28px;
  scroll-margin-top: 32px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.section-heading::after {
  display: none;
}

.section-heading__label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.section-heading h2 {
  color: var(--color-primary);
  font-family: var(--font-hero);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 22px;
  text-transform: uppercase;
}

.section-badge {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.section-badge svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.section-heading__link {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.section-heading__link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading__meta {
  flex: 0 0 auto;
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 20px;
  text-transform: uppercase;
}

.section-summary {
  max-width: 680px;
  margin: 12px 0 4px;
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 22px;
}

.index-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.index-row {
  display: grid;
  min-height: 86px;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
  padding-block: 14px;
  border-bottom: 1px solid var(--color-hover);
  color: inherit;
  text-decoration: none;
}

.index-row[href] {
  cursor: pointer;
}

.index-row[href]:hover .icon-tile {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px) rotate(-4deg) scale(1.08);
}

.index-row[href]:nth-child(even):hover .icon-tile {
  transform: translateY(-2px) rotate(4deg) scale(1.08);
}

.index-row[href]:hover .index-row__title {
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.index-row[href]:hover .row-arrow {
  color: var(--color-primary);
  transform: translate(3px, -3px);
}

.icon-tile {
  display: inline-grid;
  width: 52px;
  height: 52px;
  grid-row: 1 / span 2;
  place-items: center;
  background: var(--color-icon-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 16px;
  transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
}

.icon-tile svg {
  width: 28px;
  height: 28px;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.icon-tile .icon-circle {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-primary);
  border-radius: 999px;
}

.index-row__copy {
  display: flex;
  min-width: 0;
  grid-column: 2;
  flex-direction: column;
  gap: 5px;
}

.index-row__title {
  color: var(--color-primary);
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}

.index-row__desc {
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 20px;
}

.row-arrow {
  grid-column: 3;
  grid-row: 1 / span 2;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 22px;
  transition: color var(--transition), transform var(--transition);
}

.domain-market {
  position: relative;
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}

.domain-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.domain-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.domain-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 14px 30px rgba(11, 11, 11, 0.06);
  transform: translateY(-2px);
}

.domain-card__name {
  min-width: 0;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 26px;
  overflow-wrap: anywhere;
}

.domain-card__status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 5px 8px;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 14px;
  text-transform: uppercase;
}

.domain-market__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 28px;
  padding-top: 24px;
  align-items: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-secondary);
  font-size: 14px;
  line-height: 20px;
}

.domain-market__contact span {
  font-weight: 600;
}

.domain-market__contact a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.domain-market__contact a::after {
  content: "\2197";
  margin-left: 5px;
  color: var(--color-accent);
}

.domain-market__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding-block: 46px 28px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer p {
  color: var(--color-secondary);
  font-size: 13px;
  line-height: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a,
.footer-links span {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 38px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.back-link span {
  color: var(--color-accent);
}

.project-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 38px 34px;
}

.project-icon {
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}

.project-icon--large {
  width: 108px;
  height: 108px;
}

.project-icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.project-intro__copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.project-year {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-transform: uppercase;
}

.project-company {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: 5px 9px;
  color: var(--color-primary);
  background: var(--color-icon-bg);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.project-intro h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 40px;
  line-height: 44px;
  overflow-wrap: anywhere;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-inline: 18px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.button--secondary {
  border-color: var(--color-button-border);
}

.button:hover {
  background: var(--color-hover);
  transform: translateY(-1px);
}

.section-rule {
  height: 1px;
  background: var(--color-border);
}

.project-body {
  display: flex;
  flex-direction: column-reverse;
  gap: 34px;
  padding-top: 32px;
}

.project-narrative {
  display: flex;
  flex-direction: column;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-block: 26px;
  border-bottom: 1px solid var(--color-border);
}

.content-block:first-child {
  padding-top: 0;
}

.content-block--last {
  border-bottom: 0;
}

.content-block h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
}

.content-block p {
  color: var(--color-secondary);
  font-size: 15px;
  line-height: 24px;
}

.content-block .tech-list {
  color: var(--color-primary);
}

.product-figure {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.product-figure figcaption {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 18px;
}

.build-figure {
  min-width: 0;
}

.build-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--color-icon-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}

.idea-poster {
  padding-top: 34px;
}

.idea-poster__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 32px;
}

.idea-poster h2 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 26px;
}

.idea-poster__figure {
  margin: 0;
}

.idea-poster__image {
  display: block;
  width: 100%;
  max-width: 960px;
  height: auto;
  margin-inline: auto;
  overflow: hidden;
  background: #111111;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
}

.product-visual {
  width: 100%;
  overflow: hidden;
  color: var(--color-light);
  background: #111111;
  border: 1px solid #dadada;
  border-radius: 9px;
}

.product-topbar {
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  border-bottom: 1px solid #2a2a2a;
}

.product-brand,
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
}

.product-brand span {
  width: 10px;
  height: 10px;
  border: 1.5px solid #dadada;
  border-radius: 3px;
}

.product-status {
  color: var(--color-muted);
  font-size: 10px;
}

.product-status i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-muted);
}

.product-shell {
  display: flex;
  min-height: 200px;
}

.product-sidebar {
  display: flex;
  width: 72px;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px;
  border-right: 1px solid #2a2a2a;
}

.product-sidebar strong,
.product-sidebar span {
  font-size: 9px;
  line-height: 12px;
}

.product-sidebar strong {
  color: #ffffff;
}

.product-sidebar span {
  color: var(--color-muted);
}

.product-main {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
}

.metric-grid {
  display: none;
}

.chart-panel,
.bars-panel,
.donut-panel {
  background: #171717;
  border: 1px solid var(--color-dark-3);
  border-radius: var(--radius-sm);
}

.chart-panel {
  display: flex;
  height: 84px;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-heading strong {
  font-size: 10px;
  line-height: 12px;
}

.chart-heading span {
  color: #777777;
  font-size: 10px;
  font-weight: 700;
  line-height: 12px;
}

.chart-panel svg {
  width: 100%;
  height: 42px;
}

.grid-line {
  stroke: #272727;
}

.line-strong {
  fill: none;
  stroke: #dadada;
  stroke-width: 2.2;
}

.line-muted {
  fill: none;
  stroke: #777777;
  stroke-width: 2;
}

.lower-panels {
  display: flex;
  gap: 10px;
}

.bars-panel {
  display: flex;
  width: 110px;
  height: 62px;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.bars-panel strong {
  display: none;
}

.bars-panel span {
  width: var(--bar);
  height: 5px;
  overflow: hidden;
  color: transparent;
  background: #8a8a8a;
  font-size: 0;
}

.bars-panel span:first-of-type {
  background: #dadada;
}

.bars-panel span:last-of-type {
  background: #595959;
}

.donut-panel {
  display: flex;
  width: 82px;
  height: 62px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.donut-panel span {
  width: 42px;
  height: 42px;
  border-width: 10px;
  border-style: solid;
  border-color: #dadada #dadada #8a8a8a #595959;
  border-radius: 999px;
}

.donut-panel p {
  display: none;
}

.eyebrow {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .page-shell {
    width: min(100% - 64px, 620px);
  }

  .profile-picture {
    right: 24px;
  }

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

  .project-body {
    max-width: 620px;
  }

}

@media (min-width: 900px) {
  .page-shell {
    width: min(100% - 96px, var(--container));
  }

  .site-header {
    padding-top: 64px;
  }

  .site-header__inner {
    min-height: 52px;
  }

  .wordmark {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 26px;
  }

  .site-nav {
    width: 250px;
    gap: 42px;
  }

  .site-nav__link {
    gap: 6px;
    font-size: 15px;
    line-height: 22px;
  }

  .site-nav__link.is-active::after,
  .site-nav__link:hover::after {
    width: 58px;
  }

  .home-hero {
    min-height: 354px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-block: 68px 76px;
  }

  .home-hero__copy {
    max-width: 740px;
    gap: 22px;
  }

  .domain-hero {
    min-height: 340px;
    padding-block: 70px 64px;
  }

  .domain-hero > div {
    gap: 18px;
  }

  .domain-hero > div > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 26px;
  }

  h1 {
    font-size: 68px;
    line-height: 70px;
  }

  .home-hero h1 {
    font-size: 60px;
    line-height: 62px;
  }

  .hero-copy,
  .project-intro p {
    max-width: 650px;
    font-size: 16px;
    line-height: 26px;
  }

  .profile-picture {
    position: static;
    width: 204px;
    height: 204px;
    flex: 0 0 auto;
  }

  .proof-strip {
    margin-bottom: 34px;
    padding-block: 22px;
  }

  .proof-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .proof-strip__list strong {
    font-size: 30px;
    line-height: 34px;
  }

  .proof-strip__list span {
    max-width: 190px;
    font-size: 14px;
    line-height: 20px;
  }

  .global-footprint {
    gap: 36px;
    padding-block: 34px 62px;
  }

  .global-footprint__intro {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 10px 48px;
  }

  .global-footprint__kicker {
    grid-column: 1 / -1;
  }

  .global-footprint__intro h2 {
    font-size: 40px;
    line-height: 44px;
  }

  .global-footprint__intro > p:last-child {
    justify-self: end;
    font-size: 15px;
    line-height: 24px;
  }

  .global-footprint__figure {
    gap: 30px;
  }

  .global-footprint__leader,
  .global-footprint__label {
    display: block;
  }

  .global-footprint__locations {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .global-footprint__locations li {
    padding: 16px 10px 16px 0;
  }

  .global-footprint__locations li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .global-footprint__locations strong {
    font-size: 16px;
    line-height: 22px;
  }

  .global-footprint__locations small {
    font-size: 12px;
    line-height: 18px;
  }

  .index-section {
    padding-top: 34px;
  }

  .index-section:first-of-type {
    padding-top: 0;
  }

  .section-badge {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .section-badge svg {
    width: 21px;
    height: 21px;
  }

  .section-heading__meta {
    font-size: 14px;
    line-height: 22px;
  }

  .index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
  }

  .index-row {
    min-height: 94px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    column-gap: 14px;
    padding-block: 0;
  }

  .icon-tile {
    width: 58px;
    height: 58px;
  }

  .icon-tile svg {
    width: 32px;
    height: 32px;
  }

  .index-row__copy {
    grid-column: 2;
  }

  .row-arrow {
    grid-column: 3;
  }

  .domain-market {
    padding-top: 42px;
  }

  .domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .domain-card {
    padding: 20px;
  }

  .domain-card__name {
    font-size: 24px;
    line-height: 30px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer-links {
    gap: 28px;
  }

  .back-link {
    padding-top: 44px;
  }

  .project-intro {
    flex-direction: row;
    align-items: center;
    gap: 46px;
    padding-block: 64px 72px;
  }

  .project-icon--large {
    width: 150px;
    height: 150px;
  }

  .project-icon svg {
    width: 94px;
    height: 94px;
  }

  .project-intro__copy {
    width: 660px;
    gap: 22px;
  }

  .project-intro h1 {
    font-size: 56px;
    line-height: 60px;
  }

  .button-row {
    gap: 12px;
    padding-top: 0;
  }

  .button {
    min-height: 48px;
    padding-inline: 20px;
    gap: 12px;
  }

  .project-body {
    display: grid;
    max-width: none;
    grid-template-columns: 444px minmax(0, 624px);
    gap: 92px;
    align-items: start;
    padding-top: 56px;
  }

  .content-block {
    gap: 13px;
    padding-block: 34px;
  }

  .content-block p {
    font-size: 15px;
    line-height: 25px;
  }

  .product-figure {
    gap: 18px;
    padding-top: 20px;
  }

  .product-visual {
    border-radius: var(--radius-md);
  }

  .product-topbar {
    height: 42px;
    padding-inline: 16px;
  }

  .product-shell {
    min-height: 348px;
  }

  .product-sidebar {
    width: 118px;
    gap: 14px;
    padding: 18px 14px;
  }

  .product-sidebar strong,
  .product-sidebar span {
    font-size: 11px;
    line-height: 14px;
  }

  .product-main {
    gap: 14px;
    padding: 18px;
  }

  .metric-grid {
    display: grid;
    height: 56px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .metric-grid div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-3);
    border-radius: var(--radius-md);
  }

  .metric-grid span {
    color: #777777;
    font-size: 10px;
    font-weight: 700;
    line-height: 12px;
  }

  .metric-grid strong {
    color: #f2f2f2;
    font-size: 17px;
    font-weight: 700;
    line-height: 20px;
  }

  .chart-panel {
    height: 140px;
    padding: 14px;
  }

  .chart-heading strong {
    font-size: 12px;
    line-height: 16px;
  }

  .chart-panel svg {
    height: 82px;
  }

  .lower-panels {
    gap: 14px;
  }

  .bars-panel {
    width: 252px;
    height: 102px;
    gap: 10px;
    padding: 12px;
  }

  .bars-panel strong {
    display: block;
    color: var(--color-light);
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
  }

  .bars-panel span {
    position: relative;
    display: flex;
    width: auto;
    height: 12px;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    color: #777777;
    background: transparent;
    font-size: 10px;
    line-height: 12px;
  }

  .bars-panel span::after {
    width: min(var(--bar), 116px);
    height: 5px;
    flex: 0 0 auto;
    background: #8a8a8a;
    content: "";
  }

  .bars-panel span:first-of-type::after {
    background: #dadada;
  }

  .bars-panel span:last-of-type::after {
    background: #595959;
  }

  .donut-panel {
    width: 188px;
    height: 102px;
    gap: 18px;
  }

  .donut-panel span {
    width: 62px;
    height: 62px;
    border-width: 14px;
  }

  .donut-panel p {
    display: block;
    color: #777777;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
  }

}

@media (max-width: 374px) {
  .page-shell {
    width: min(100% - 32px, var(--mobile-container));
  }

  .site-nav {
    width: auto;
    gap: 10px;
  }

  .site-nav__link {
    font-size: 11px;
  }

  h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .proof-strip__list {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
