:root {
  --accent: #0E9F6E;
  --accent-dark: #0B8159;
  --accent-soft: #EAF6F0;
  --ink: #0E1113;
  --ink-2: #474C52;
  --ink-3: #8A9099;
  --bg: #F6F7F8;
  --card: #FFFFFF;
  --line: #EAEBEE;
  --dark: #080A0B;
  --dark-2: #101315;
  --dark-3: #1C2023;
  --danger: #E0563F;
  --blue: #3B82F6;
  --gold: #C8932A;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1200px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

button,
input { font: inherit; letter-spacing: 0; }

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

a { color: inherit; }

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid #F3C24B;
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--card);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100vw - 32px));
  min-height: 68px;
  padding: 0 14px 0 18px;
  color: #FFFFFF;
  background: rgba(16, 19, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  transform: translateX(-50%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--line);
  box-shadow: 0 12px 34px rgba(14, 17, 19, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: currentColor;
  font-size: 19px;
  font-weight: 900;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; }

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

.site-nav a {
  color: currentColor;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover { color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--accent); }

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: #FFFFFF;
  background: var(--accent);
  border-radius: 10px;
}

.site-nav .nav-cta:hover { background: var(--accent-dark); }

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 10px;
  cursor: pointer;
}

.icon-button svg { width: 20px; height: 20px; }
.menu-button { display: none; }

.globe-hero {
  position: relative;
  min-height: 740px;
  height: min(92svh, 860px);
  overflow: hidden;
  color: #FFFFFF;
  background: var(--dark);
}

.globe-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 64%;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 11, 0.96) 0%,
    rgba(8, 10, 11, 0.94) 58%,
    rgba(8, 10, 11, 0.68) 76%,
    rgba(8, 10, 11, 0.24) 91%,
    rgba(8, 10, 11, 0) 100%
  );
  pointer-events: none;
}

.globe-stage {
  position: absolute;
  inset: 0 0 0 31%;
  min-width: 0;
  overflow: hidden;
}

.globe-canvas,
.globe-canvas > div,
.globe-canvas canvas {
  width: 100% !important;
  height: 100% !important;
}

.globe-canvas canvas { display: block; cursor: grab; }
.globe-canvas canvas:active { cursor: grabbing; }

.fallback-globe {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 72px 42px;
}

.fallback-sphere {
  position: relative;
  width: min(72vh, 72vw);
  max-width: 680px;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #082B45;
  border: 1px solid rgba(104, 223, 184, 0.28);
  border-radius: 50%;
  box-shadow: inset -38px -18px 76px rgba(0, 0, 0, 0.68), 0 0 66px rgba(14, 159, 110, 0.17);
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.fallback-sphere:active { cursor: grabbing; }

.fallback-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.fallback-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(14, 159, 110, 0.08);
  pointer-events: none;
}

.fallback-points { position: absolute; inset: 0; }

.fallback-point {
  --point-depth: 1;
  position: absolute;
  z-index: 2;
  width: 3px;
  height: 3px;
  padding: 0;
  background: #20E5A2;
  border: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--point-depth));
  box-shadow: 0 0 4px rgba(24, 210, 148, 0.78);
  cursor: pointer;
  transition: transform 160ms ease;
}

.fallback-point:hover,
.fallback-point:focus-visible,
.fallback-point.is-selected {
  z-index: 4;
  width: 11px;
  height: 11px;
  background: #FFFFFF;
  border: 3px solid var(--accent);
  transform: translate(-50%, -50%) scale(1.18);
}

.fallback-status {
  position: absolute;
  right: 24px;
  bottom: 68px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 9px 12px;
  color: #FFFFFF;
  background: rgba(16, 19, 21, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.fallback-status strong { color: var(--accent); font-size: 16px; }
.fallback-status span { color: #AEB5B9; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.globe-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: #8A9099;
  background: var(--dark);
  transition: opacity 240ms ease, visibility 240ms ease;
}

.globe-loading.is-ready {
  opacity: 0;
  visibility: hidden;
}

.globe-loading span {
  width: 38px;
  height: 38px;
  border: 3px solid #2A3033;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.globe-loading p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 88px;
  pointer-events: none;
}

.hero-content > * { pointer-events: auto; }

.app-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.app-eyebrow > span:first-child {
  width: 22px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(62px, 7vw, 102px);
  font-weight: 900;
  line-height: 0.92;
}

.hero-line {
  max-width: 560px;
  margin: 20px 0 0;
  color: #FFFFFF;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.03;
}

.hero-copy {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.60);
  font-size: 15px;
}

.globe-search-wrap {
  position: relative;
  width: min(440px, 100%);
  margin-top: 24px;
}

.globe-search,
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 12px;
}

.globe-search {
  color: #FFFFFF;
  background: #15181B;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.globe-search svg,
.search-field svg { width: 19px; height: 19px; flex: 0 0 auto; color: var(--ink-3); }

.globe-search input,
.search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  outline: 0;
}

.globe-search input::placeholder { color: #727A80; }

.globe-search kbd,
.search-field kbd {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #747C82;
  background: #22272B;
  border: 1px solid #343B40;
  border-radius: 6px;
  font-size: 11px;
}

.globe-results {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  background: #15181B;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.globe-result {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 7px;
  color: #FFFFFF;
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
}

.globe-result:hover,
.globe-result:focus-visible { background: #202528; }

.globe-result img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.globe-result strong,
.globe-result span { display: block; }
.globe-result strong { overflow-wrap: anywhere; font-size: 13px; }
.globe-result span { margin-top: 2px; color: #8F989E; font-size: 11px; }
.globe-result svg { width: 16px; height: 16px; color: var(--accent); }

.globe-result-empty {
  margin: 0;
  padding: 16px;
  color: #8F989E;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: #FFFFFF; background: var(--accent); }
.button-primary:hover { background: var(--accent-dark); }
.button-dark { color: #FFFFFF; background: #202528; border-color: #353B40; }
.button-dark:hover { background: #2A3034; }
.button-outline { color: var(--ink); background: transparent; border-color: #C9CDD1; }
.button-outline:hover { color: #FFFFFF; background: var(--ink); border-color: var(--ink); }

.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  min-width: 116px;
  padding: 16px 18px 0 0;
}

.hero-stats > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats strong { font-size: 22px; font-weight: 900; }
.hero-stats span { margin-top: 2px; color: #7F878C; font-size: 10px; font-weight: 800; text-transform: uppercase; }

.globe-controls {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.globe-instruction {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #AEB5B9;
  background: rgba(16, 19, 21, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}

.globe-instruction svg { width: 15px; height: 15px; color: var(--accent); }

.globe-rotation {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #FFFFFF;
  background: rgba(16, 19, 21, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  cursor: pointer;
}

.globe-rotation:hover,
.globe-rotation:focus-visible { color: var(--accent); border-color: rgba(24, 210, 148, 0.55); }
.globe-rotation svg { width: 16px; height: 16px; }

.place-popover {
  position: absolute;
  top: 100px;
  right: 22px;
  z-index: 10;
  width: min(360px, calc(100vw - 44px));
  max-height: calc(100% - 150px);
  overflow-y: auto;
  color: #FFFFFF;
  background: rgba(16, 19, 21, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.place-popover > img {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: cover;
  background: #242A2E;
}

.place-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  color: #FFFFFF;
  background: rgba(8, 10, 11, 0.76);
  border-color: rgba(255, 255, 255, 0.30);
}

.place-copy { padding: 20px; }

.place-copy h2 {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
}

.place-country {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 10px 0 0;
  color: #9DA5AA;
  font-size: 13px;
  font-weight: 700;
}

.place-country svg { width: 15px; height: 15px; color: var(--accent); }

.history-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.history-label,
.dialog-history > span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.history-block p {
  margin: 7px 0 0;
  color: #C5CBCE;
  font-size: 12.5px;
  line-height: 1.55;
}

.history-source,
.dialog-history a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.history-source svg,
.dialog-history a svg { width: 14px; height: 14px; }

.explore-section,
.how-section { padding-top: 104px; padding-bottom: 112px; }

.home-manifesto {
  padding: 112px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}

.home-manifesto-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.home-manifesto h2 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
}

.manifesto-copy p { margin: 0; color: var(--ink-2); font-size: 17px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover { color: var(--ink); }
.text-link svg { width: 17px; height: 17px; }

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 510px;
  overflow: hidden;
  color: #FFFFFF;
  background: var(--dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 11, 0.72);
}

.collection-hero {
  background-image: url("assets/hero-eiffel.jpg");
  background-position: center 42%;
  background-size: cover;
}

.process-hero {
  background-image: url("assets/earth-blue-marble.jpg");
  background-position: 70% 50%;
  background-size: cover;
}

.process-hero::before { background: rgba(8, 10, 11, 0.79); }
.legal-hero { min-height: 430px; }
.legal-hero::before { display: none; }

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 150px;
  padding-bottom: 68px;
}

.page-hero h1 {
  max-width: 980px;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: clamp(54px, 7.8vw, 98px);
  font-weight: 900;
  line-height: 0.94;
}

.page-hero-content > p:not(.app-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 16px;
}

.legal-updated { display: block; margin-top: 22px; color: #747C82; font-size: 11px; font-weight: 800; }
.collection-page { padding-top: 88px; }
.compact-heading h2 { font-size: clamp(40px, 5vw, 64px); }

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.country-layout h2,
.verification-copy h2,
.closing-content h2 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
}

.section-heading > p,
.country-layout > div > p:not(.app-eyebrow) {
  max-width: 430px;
  margin: 0;
  color: var(--ink-2);
}

.explorer-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(14, 17, 19, 0.05);
}

.search-field {
  width: min(330px, 100%);
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
}

.search-field kbd { color: var(--ink-3); background: var(--card); border-color: var(--line); }
.search-field input::placeholder { color: var(--ink-3); }

.filter-row {
  display: flex;
  flex: 1;
  gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar { display: none; }

.filter-chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 10px;
  color: var(--ink-2);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip:hover { color: var(--accent-dark); background: var(--accent-soft); }
.filter-chip[aria-pressed="true"] { color: #FFFFFF; background: var(--ink); }

.results-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 700;
}

.results-line p { margin: 0; }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  color: var(--accent-dark);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.text-button svg { width: 14px; height: 14px; }

.monument-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.monument-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.monument-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(14, 17, 19, 0.10);
}

.monument-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #E7EAEC;
}

.monument-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.monument-card:hover .monument-card-image img { transform: scale(1.035); }

.monument-card-image.image-failed {
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  text-align: center;
}

.monument-card-image.image-failed::after {
  content: attr(data-fallback);
  font-size: 17px;
  font-weight: 900;
}

.monument-card-index {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  color: #FFFFFF;
  background: rgba(14, 17, 19, 0.78);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
}

.monument-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  min-height: 98px;
  padding: 15px;
}

.monument-card-copy strong,
.monument-card-copy span { display: block; }

.monument-card-copy strong {
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.monument-card-copy span span {
  margin-top: 7px;
  color: var(--ink-3);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
}

.monument-card-copy svg { width: 17px; height: 17px; color: var(--accent); }
.load-more { margin: 30px auto 0; }

.empty-state {
  padding: 70px 20px;
  color: var(--ink-2);
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.empty-state svg { width: 34px; height: 34px; color: var(--danger); }
.empty-state h3 { margin: 14px 0 4px; font-size: 22px; font-weight: 900; }
.empty-state p { margin: 0; color: var(--ink-3); }

.country-band {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.country-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.country-layout h2 { font-size: clamp(42px, 5vw, 66px); }
.country-layout > div > p:not(.app-eyebrow) { margin-top: 20px; }

.country-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.country-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 58px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.country-button:hover { color: var(--accent-dark); background: var(--accent-soft); border-color: #CFE9DC; }
.country-button span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.country-button span:last-child { color: var(--ink-3); font-size: 10px; }

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  position: relative;
  min-height: 330px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 8px 26px rgba(14, 17, 19, 0.04);
}

.step-number { color: var(--ink-3); font-size: 10px; font-weight: 900; }

.step-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 66px;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 18px;
}

.step-icon svg { width: 25px; height: 25px; }
.step-list h3 { margin: 25px 0 9px; font-size: 24px; font-weight: 900; }
.step-list p { margin: 0; color: var(--ink-2); font-size: 13px; }

.verification-section {
  padding: 110px 0;
  overflow: hidden;
  color: #FFFFFF;
  background: var(--dark);
}

.verification-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: center;
}

.verification-copy h2 { font-size: clamp(48px, 6vw, 76px); }
.verification-intro { max-width: 560px; margin: 22px 0 0; color: #9EA6AB; font-size: 16px; }
.section-action { margin-top: 28px; }

.proof-list {
  margin-top: 38px;
  background: var(--dark-2);
  border: 1px solid #2B3034;
  border-radius: 18px;
  overflow: hidden;
}

.proof-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 19px;
}

.proof-list > div + div { border-top: 1px solid #2B3034; }
.proof-list svg { width: 24px; height: 24px; color: var(--accent); }
.proof-list p { margin: 0; }
.proof-list strong,
.proof-list span { display: block; }
.proof-list strong { font-size: 14px; font-weight: 900; }
.proof-list span { margin-top: 2px; color: #888F94; font-size: 12px; }

.app-figure { width: min(390px, 100%); margin: 0 auto; }

.phone-frame {
  position: relative;
  aspect-ratio: 0.565;
  padding: 9px;
  overflow: hidden;
  background: #030404;
  border: 1px solid #454C50;
  border-radius: 44px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.48);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 35px;
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 106px;
  height: 28px;
  transform: translateX(-50%);
  background: #020202;
  border-radius: 18px;
}

.app-figure figcaption { margin-top: 14px; color: #687076; font-size: 10px; font-weight: 700; text-align: center; }

.closing-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 580px;
  overflow: hidden;
  color: #FFFFFF;
  background: #111619;
}

.closing-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.closing-shade { position: absolute; inset: 0; background: rgba(8, 10, 11, 0.62); }
.closing-content { position: relative; z-index: 1; padding-bottom: 68px; }
.closing-content h2 { max-width: 760px; }
.closing-content > p:not(.app-eyebrow) { max-width: 560px; margin: 20px 0 28px; color: rgba(255, 255, 255, 0.68); }

.site-footer { color: #B7BEC2; background: #07090A; }

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 116px;
  border-bottom: 1px solid #23282B;
}

.footer-brand { color: #FFFFFF; }
.footer-main > p { margin: 0; color: #686F74; font-size: 13px; font-weight: 700; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: flex-end; }
.footer-main nav a,
.footer-main nav button { padding: 0; color: #AAB1B5; background: transparent; border: 0; font-size: 12px; font-weight: 700; text-decoration: none; cursor: pointer; }
.footer-main nav a:hover,
.footer-main nav button:hover { color: var(--accent); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; min-height: 64px; color: #565E63; font-size: 10px; font-weight: 700; }

.faq-section { padding-top: 104px; padding-bottom: 112px; }

.faq-list { border-top: 1px solid #CDD1D5; }

.faq-list details { border-bottom: 1px solid #CDD1D5; }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: -2px 0 24px; color: var(--ink-2); font-size: 14px; }

.legal-page {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 90px;
  justify-content: center;
  padding-top: 84px;
  padding-bottom: 120px;
}

.legal-index {
  position: sticky;
  top: 116px;
  display: flex;
  align-self: start;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
  border-left: 2px solid var(--line);
}

.legal-index strong { margin-bottom: 3px; color: var(--ink); font-size: 11px; text-transform: uppercase; }
.legal-index a { color: var(--ink-3); font-size: 12px; font-weight: 700; text-decoration: none; }
.legal-index a:hover { color: var(--accent-dark); }

.legal-content section { scroll-margin-top: 120px; }
.legal-content section + section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 16px; font-size: 30px; font-weight: 900; line-height: 1.1; }
.legal-content h3 { margin: 26px 0 8px; font-size: 16px; font-weight: 900; }
.legal-content p { margin: 0 0 15px; color: var(--ink-2); font-size: 14px; line-height: 1.75; }
.legal-content a { color: var(--accent-dark); font-weight: 700; }

dialog {
  padding: 0;
  color: var(--ink);
  background: var(--card);
  border: 0;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(4, 8, 6, 0.38);
}

dialog::backdrop { background: rgba(5, 8, 7, 0.78); backdrop-filter: blur(8px); }

.monument-dialog {
  width: min(880px, calc(100vw - 32px));
  max-height: min(800px, calc(100svh - 32px));
  overflow: auto;
}

.monument-dialog > img { width: 100%; aspect-ratio: 16 / 8.4; object-fit: cover; background: #E7EAEC; }

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  color: #FFFFFF;
  background: rgba(14, 17, 19, 0.74);
  border-color: rgba(255, 255, 255, 0.34);
}

.dialog-body { padding: 28px 30px 32px; }
.dialog-body h2 { margin: 0; overflow-wrap: anywhere; font-size: clamp(38px, 5vw, 58px); font-weight: 900; line-height: 1; }
.dialog-country { margin: 10px 0 0; color: var(--ink-2); font-size: 15px; font-weight: 800; }

.dialog-coordinates { display: flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--ink-3); font-size: 12px; font-weight: 700; }
.dialog-coordinates svg { width: 16px; height: 16px; color: var(--accent); }

.dialog-history {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dialog-history p { margin: 8px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.65; }
.dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.legal-dialog { width: min(740px, calc(100vw - 32px)); max-height: calc(100svh - 32px); overflow: auto; }
.legal-dialog .dialog-close { position: sticky; float: right; top: 14px; margin: 14px 14px 0 0; color: var(--ink); background: var(--bg); border-color: var(--line); }
.legal-body { padding: 44px; }
.legal-body h2 { margin: 0 0 5px; font-size: 44px; font-weight: 900; }
.legal-body .legal-date { margin: 0 0 30px; color: var(--ink-3); font-size: 11px; font-weight: 700; }
.legal-body h3 { margin: 26px 0 7px; font-size: 16px; }
.legal-body p { color: var(--ink-2); font-size: 13px; }

.support-hero { min-height: 520px; background: #0B1110; }
.support-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 64px;
  padding: 32px;
  color: #FFFFFF;
  background: var(--dark-2);
  border-radius: 8px;
}
.support-contact h2 { margin: 8px 0 10px; font-size: 34px; line-height: 1.05; }
.support-contact p { max-width: 640px; margin: 0; color: #B9C0C5; }
.support-contact .button { flex: 0 0 auto; }

.credits-page { padding-top: 88px; padding-bottom: 110px; }
.credits-search { margin-bottom: 18px; }
.credits-status { margin: 0 0 14px; color: var(--ink-3); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.credits-list { border-top: 1px solid var(--line); }
.credits-list article { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; border-bottom: 1px solid var(--line); }
.credits-list article div { display: flex; min-width: 0; flex-direction: column; }
.credits-list strong { overflow-wrap: anywhere; font-size: 15px; }
.credits-list span { color: var(--ink-3); font-size: 12px; font-weight: 700; }
.credits-list a { flex: 0 0 auto; color: var(--accent-dark); font-size: 12px; font-weight: 800; }

noscript { display: block; padding: 16px; color: #FFFFFF; background: var(--danger); text-align: center; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 36px, 820px); }

  .globe-hero::before { width: 72%; }
  .globe-stage { left: 34%; }
  .place-popover { width: 330px; }

  .explorer-toolbar { align-items: stretch; flex-direction: column; }
  .search-field { width: 100%; }

  .monument-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .country-layout,
  .verification-layout,
  .home-manifesto-layout { grid-template-columns: 1fr; }
  .country-layout { gap: 54px; }
  .verification-layout,
  .home-manifesto-layout { gap: 72px; }

  .step-list { grid-template-columns: 1fr; }
  .step-list li { display: grid; grid-template-columns: 44px 70px 0.65fr 1fr; gap: 18px; align-items: center; min-height: 140px; }
  .step-icon,
  .step-list h3,
  .step-list p { margin: 0; }

  .footer-main { grid-template-columns: auto 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; padding-bottom: 26px; }

  .legal-page { grid-template-columns: 190px minmax(0, 1fr); gap: 48px; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 32px); }

  .site-header { top: 9px; width: calc(100vw - 18px); min-height: 58px; padding: 0 9px 0 13px; border-radius: 15px; }
  .brand { font-size: 17px; }
  .brand img { width: 31px; height: 31px; }
  .menu-button { display: inline-grid; }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 9px;
    right: 9px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #FFFFFF;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(14, 17, 19, 0.20);
  }

  .site-header.menu-active .site-nav { display: flex; }
  .site-nav a { display: flex; align-items: center; min-height: 48px; padding: 0 10px; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { justify-content: center; margin-top: 9px; border-bottom: 0; }

  .globe-hero { min-height: 720px; height: 92svh; max-height: 820px; }
  .globe-hero::before { inset: 0; width: 100%; height: 52%; background: rgba(8, 10, 11, 0.90); }
  .globe-stage { inset: 370px 0 0; height: auto; }

  .hero-content { justify-content: flex-start; height: auto; padding-top: 102px; }
  .hero-content h1 { font-size: 58px; }
  .hero-line { margin-top: 12px; font-size: 32px; }
  .hero-copy { max-width: 95%; margin-top: 13px; font-size: 13px; }
  .globe-search-wrap { margin-top: 17px; }
  .hero-actions { display: none; }
  .hero-stats { margin-top: 16px; }
  .hero-stats > div { min-width: 96px; padding-top: 12px; }
  .hero-stats strong { font-size: 19px; }
  .globe-controls { right: 50%; bottom: 14px; transform: translateX(50%); white-space: nowrap; }

  .place-popover {
    top: auto;
    left: 12px;
    right: 12px;
    bottom: 52px;
    width: auto;
    max-height: 520px;
    border-radius: 20px;
  }

  .place-popover > img { aspect-ratio: 16 / 7; }

  .fallback-globe { padding: 14px 20px 54px; }
  .fallback-sphere { width: min(96vw, 430px); }
  .fallback-status { right: 12px; bottom: 52px; }

  .explore-section { padding-top: 32px; padding-bottom: 84px; }
  .how-section { padding-top: 78px; padding-bottom: 84px; }
  .home-manifesto { padding: 78px 0; }
  .home-manifesto-layout { gap: 28px; }
  .manifesto-copy p { font-size: 15px; }
  .page-hero { min-height: 460px; }
  .page-hero-content { padding-top: 124px; padding-bottom: 48px; }
  .page-hero h1 { font-size: 50px; }
  .page-hero-content > p:not(.app-eyebrow) { font-size: 14px; }
  .legal-hero { min-height: 390px; }
  .collection-page { padding-top: 64px; }
  .section-heading { grid-template-columns: 1fr; gap: 17px; margin-bottom: 30px; }
  .section-heading h2,
  .country-layout h2,
  .verification-copy h2,
  .closing-content h2 { font-size: 44px; }
  .section-heading > p { font-size: 14px; }
  .search-field kbd,
  .globe-search kbd { display: none; }
  .monument-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .monument-card-copy { min-height: 92px; padding: 12px; }
  .monument-card-copy strong { font-size: 13px; }
  .monument-card-copy span span { font-size: 9px; }
  .country-band,
  .verification-section { padding: 78px 0; }
  .country-list { grid-template-columns: 1fr; }

  .step-list li { grid-template-columns: 32px 54px 1fr; gap: 12px; min-height: 0; padding: 18px; }
  .step-list p { grid-column: 3; }
  .step-icon { width: 50px; height: 50px; border-radius: 15px; }
  .step-list h3 { font-size: 20px; }

  .app-figure { width: min(340px, 92vw); }
  .closing-section { min-height: 600px; }

  .footer-main { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .footer-main nav { grid-column: auto; gap: 16px; padding: 14px 0 0; }
  .footer-bottom { min-height: 60px; }

  .faq-section { padding-top: 78px; padding-bottom: 84px; }
  .faq-list summary { min-height: 68px; font-size: 15px; }

  .legal-page { display: block; padding-top: 58px; padding-bottom: 88px; }
  .legal-index { position: static; margin-bottom: 54px; }
  .legal-content section + section { margin-top: 38px; padding-top: 38px; }
  .legal-content h2 { font-size: 26px; }
  .support-contact { align-items: stretch; flex-direction: column; margin-top: 44px; padding: 24px 18px; }
  .support-contact .button { width: 100%; }
  .credits-page { padding-top: 58px; padding-bottom: 88px; }
  .credits-list article { align-items: flex-start; flex-direction: column; gap: 8px; padding: 16px 0; }

  .monument-dialog > img { aspect-ratio: 4 / 3; }
  .dialog-body { padding: 23px 18px 26px; }
  .dialog-body h2 { font-size: 34px; }
  .dialog-actions { flex-direction: column; }
  .dialog-actions .button { width: 100%; }
  .legal-body { padding: 32px 22px; }
  .legal-body h2 { font-size: 34px; }
}

@media (max-width: 370px) {
  .globe-hero { min-height: 720px; }
  .globe-stage { top: 380px; }
  .hero-content h1 { font-size: 50px; }
  .hero-line { font-size: 28px; }
  .hero-stats > div { min-width: 86px; }
  .monument-grid { grid-template-columns: 1fr; }
  .step-list p { grid-column: 1 / -1; padding-left: 98px; }
}

@media (max-width: 760px) and (max-height: 720px) {
  .globe-hero { min-height: 0; height: 92svh; }
  .hero-content { padding-top: 84px; }
  .hero-content h1 { font-size: 48px; }
  .hero-line { font-size: 25px; }
  .hero-copy,
  .hero-stats { display: none; }
  .globe-search-wrap { margin-top: 15px; }
  .globe-stage { top: 270px; }
  .globe-instruction { display: none; }
}

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