:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --muted: #f8f9fa;
  --text: #1a1a1a;
  --subtle: #666666;
  --border: #e6e9ee;
  --navy: #002b5b;
  --navy-2: #102a43;
  --brand: #002b5b;
  --brand-strong: #002b5b;
  --teal: #14b8a6;
  --gold: #c5a059;
  --shadow: 0 24px 80px rgba(0, 43, 91, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Noto Sans SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 66px;
  padding: 0 clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(230, 233, 238, 0.92);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 780;
  white-space: nowrap;
}

.brand img {
  display: block;
  width: 58px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.brand span {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-brand img {
  width: 170px;
  height: 76px;
  padding: 8px;
  border-radius: 12px;
  background: white;
  mix-blend-mode: normal;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  color: var(--subtle);
  font-size: 13px;
  white-space: nowrap;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 750;
}

.button.dark {
  background: var(--brand);
  color: white;
  box-shadow: 0 12px 28px rgba(0, 43, 91, 0.22);
}

.button.light {
  background: white;
  color: var(--navy);
}

.button.ghost {
  border: 1px solid var(--border);
  background: var(--surface);
}

.button.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: white;
}

.button.soft {
  color: rgba(255, 255, 255, 0.86);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  background: var(--navy);
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 22% 18%, rgba(197, 160, 89, 0.2), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.11), transparent 32%),
    linear-gradient(120deg, #00172f 0%, #002b5b 50%, #00152c 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 58%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 38%, rgba(255, 255, 255, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 53% 62%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 42%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 64%, rgba(255, 255, 255, 0.6) 0 2px, transparent 3px),
    linear-gradient(24deg, transparent 39%, rgba(255, 255, 255, 0.11) 40%, transparent 41%),
    linear-gradient(142deg, transparent 42%, rgba(255, 255, 255, 0.09) 43%, transparent 44%);
  background-size: 100% 100%;
  mask-image: radial-gradient(ellipse at 50% 42%, black 36%, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.hero-subtitle {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-services {
  color: rgba(255, 255, 255, 0.66);
}

.searchbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr auto;
  align-items: center;
  gap: 12px;
  width: min(860px, 100%);
  margin: 44px auto 26px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.searchbar label {
  display: grid;
  gap: 3px;
  padding: 8px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-align: left;
}

.searchbar label span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.searchbar input {
  min-width: 0;
  flex: 1;
  border: 0;
  background: transparent;
  color: white;
  font: inherit;
  outline: none;
}

.searchbar input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.searchbar button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--gold);
  color: white;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(197, 160, 89, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sponsor-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto;
  padding: 22px 26px;
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98)),
    linear-gradient(120deg, rgba(197, 160, 89, 0.08), rgba(0, 43, 91, 0.04));
  box-shadow: 0 16px 42px rgba(0, 43, 91, 0.05);
}

.sponsor-slot::before {
  position: absolute;
  inset: 10px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(0, 43, 91, 0.045);
  border-radius: 10px;
}

.sponsor-slot.compact {
  margin-top: -24px;
  margin-bottom: 42px;
}

.sponsor-slot div {
  display: grid;
  gap: 3px;
}

.sponsor-slot small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sponsor-slot strong {
  color: var(--text);
  font-size: 18px;
}

.sponsor-slot span {
  color: var(--subtle);
  font-size: 14px;
}

.sponsor-slot a {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #f8fafc;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid var(--border);
  background: #e8f1fb;
}

.metrics div {
  padding: 28px 18px;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.metrics strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
}

.metrics span,
.metrics small {
  display: block;
  color: var(--subtle);
}

.metrics span {
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.muted-band {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  background: var(--muted);
}

.muted-band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

.section-heading p:not(.eyebrow),
.split > div:first-child p,
.founder p,
.about-copy {
  color: var(--subtle);
}

.city-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.city-card,
.profile-card,
.category-grid article,
.request-list article,
.principles article {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 18px 55px rgba(0, 43, 91, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.city-card:hover,
.profile-card:hover,
.category-grid article:hover,
.request-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 43, 91, 0.16);
  box-shadow: 0 28px 70px rgba(0, 43, 91, 0.11);
}

.city-card {
  overflow: hidden;
}

.city-card > div:not(.city-visual),
.city-card > span,
.city-card dl {
  margin-left: 22px;
  margin-right: 22px;
}

.city-visual {
  position: relative;
  min-height: 132px;
  margin-bottom: 20px;
  background:
    linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)),
    linear-gradient(135deg, #002b5b, #6b7fa0);
}

.city-visual::after {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  height: 48px;
  content: "";
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.18) 0 100%, transparent 0) 0 18px / 24px 30px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.24) 0 100%, transparent 0) 34px 8px / 32px 40px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.16) 0 100%, transparent 0) 78px 24px / 28px 24px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.2) 0 100%, transparent 0) 122px 0 / 38px 48px no-repeat,
    linear-gradient(to top, rgba(255, 255, 255, 0.15) 0 100%, transparent 0) 178px 18px / 26px 30px no-repeat;
}

.city-visual span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 800;
}

.city-visual.la { background: linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)), linear-gradient(135deg, #002b5b, #879bb8); }
.city-visual.vegas { background: linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)), linear-gradient(135deg, #00172f, #c5a059); }
.city-visual.ny { background: linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)), linear-gradient(135deg, #002b5b, #14b8a6); }
.city-visual.vancouver { background: linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)), linear-gradient(135deg, #002b5b, #6c8a77); }
.city-visual.toronto { background: linear-gradient(to top, rgba(15, 23, 42, 0.74), rgba(15, 23, 42, 0.06)), linear-gradient(135deg, #002b5b, #64748b); }

.city-card small {
  color: var(--subtle);
}

.city-card h3 {
  font-size: 22px;
}

.status-badge {
  display: inline-flex;
  margin: 4px 0 20px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197, 160, 89, 0.38);
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18), rgba(255, 255, 255, 0.92));
  color: #7c5d24;
  font-size: 12px;
  font-weight: 800;
}

.status-badge.muted {
  background: var(--muted);
  color: var(--subtle);
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 22px 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

dt {
  font-size: 20px;
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--subtle);
  font-size: 12px;
}

.category-grid,
.news-grid,
.principles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.category-grid article,
.principles article {
  padding: 22px;
  text-align: center;
}

.line-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 43, 91, 0.14);
  border-radius: 12px;
  background: #f8fbff;
  color: var(--navy);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.category-grid p,
.profile-card p,
.privacy-note,
footer p {
  color: var(--subtle);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.request-list {
  display: grid;
  gap: 12px;
}

.request-list article {
  padding: 18px 20px;
}

.request-list small {
  color: var(--brand-strong);
  font-weight: 800;
}

.request-list a {
  color: var(--brand-strong);
  font-weight: 800;
}

.profile-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.profile-card b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #fff8eb);
  color: var(--brand-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ambassador-card {
  border-color: rgba(197, 160, 89, 0.58);
  box-shadow: 0 24px 70px rgba(197, 160, 89, 0.14), 0 18px 55px rgba(0, 43, 91, 0.07);
}

.ambassador-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(197, 160, 89, 0.12), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(197, 160, 89, 0.16), transparent 32%);
}

.official-ribbon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 10px;
  border: 1px solid rgba(197, 160, 89, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 239, 221, 0.92));
  color: #7c5d24;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.local-time {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--navy) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.basic-card {
  opacity: 0.78;
}

.locked-contact {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(0, 43, 91, 0.08);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.72);
  color: rgba(26, 26, 26, 0.58) !important;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.badge.verified {
  border: 1px solid rgba(0, 43, 91, 0.12);
  background: linear-gradient(135deg, rgba(0, 43, 91, 0.11), rgba(255, 255, 255, 0.86));
  color: var(--navy);
}

.badge.verified::before {
  content: "✓";
  display: inline-grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 9px;
}

.badge.trusted {
  border: 1px solid rgba(0, 43, 91, 0.12);
  background: linear-gradient(135deg, rgba(229, 233, 239, 0.94), rgba(255, 255, 255, 0.72));
  color: #475569;
}

.badge.founder {
  border: 1px solid rgba(197, 160, 89, 0.36);
  background:
    linear-gradient(135deg, rgba(197, 160, 89, 0.28), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(90deg, rgba(197, 160, 89, 0.14) 0 1px, transparent 1px 5px);
  color: #9a6a13;
}

meter {
  width: 100%;
  height: 8px;
}

.global-network {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  background: #002b5b;
  color: white;
}

.global-network h2 {
  color: white;
}

.global-network p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.network-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 45%, rgba(197, 160, 89, 0.22), transparent 28%),
    radial-gradient(circle at 75% 35%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.network-map::before,
.network-map::after {
  position: absolute;
  inset: 42px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.network-map::after {
  inset: 92px 80px;
  transform: rotate(18deg);
}

.node {
  position: absolute;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.node::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.node.sf { left: 10%; top: 48%; }
.node.la { left: 16%; top: 68%; }
.node.vegas { left: 24%; top: 58%; }
.node.ny { left: 48%; top: 42%; }
.node.van { left: 18%; top: 28%; }
.node.tor { left: 54%; top: 30%; }
.node.tokyo { right: 18%; top: 48%; }
.node.paris { left: 57%; top: 62%; }
.node.sydney { right: 10%; bottom: 18%; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}

.news-grid a {
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  font-weight: 750;
}

.ambassador {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 88px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy);
  color: white;
}

.ambassador h2 {
  color: white;
}

.ambassador p {
  color: rgba(255, 255, 255, 0.72);
}

.ambassador ul,
.founder ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ambassador li,
.founder li {
  padding: 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.founder {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.founder li {
  background: var(--muted);
}

.about-copy {
  max-width: 760px;
  font-size: 17px;
}

.principles {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 28px;
}

.principles small,
.fineprint {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.principles strong {
  display: block;
  margin-top: 5px;
}

footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
}

footer .brand,
footer .fineprint {
  color: rgba(255, 255, 255, 0.86);
}

footer nav {
  display: grid;
  gap: 10px;
}

.fineprint {
  grid-column: 1 / -1;
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding-block: 16px;
  }

  .site-header nav {
    display: none;
  }

  .metrics,
  .sponsor-slot,
  .city-grid,
  .feature-grid,
  .category-grid,
  .news-grid,
  .principles,
  .ambassador,
  .founder,
  .split,
  .global-network,
  footer {
    grid-template-columns: 1fr 1fr;
  }

  .metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .sponsor-slot {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-inline: 20px;
  }

  .section {
    width: auto;
    padding: 64px 20px;
  }

  .header-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    min-height: 660px;
    padding-inline: 20px;
  }

  h1 {
    font-size: 42px;
  }

  .searchbar {
    grid-template-columns: 1fr;
    align-items: stretch;
    border-radius: 16px;
  }

  .searchbar label {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .searchbar button {
    width: 100%;
  }

  .metrics,
  .sponsor-slot,
  .city-grid,
  .feature-grid,
  .category-grid,
  .news-grid,
  .principles,
  .ambassador,
  .founder,
  .split,
  .global-network,
  footer {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .category-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .founder {
    padding: 28px;
  }

  .global-network {
    padding: 64px 20px;
  }

  .network-map {
    min-height: 420px;
  }
}
