:root {
  --orange: #ff6d00;
  --black: #000000;
  --white: #ffffff;
  --dark-gray: #111111;
  --mid-gray: #1a1a1a;
  --light-gray: #2a2a2a;
}

* { box-sizing: border-box; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ─── FONT ROLES ─── */
/* Anton: large display titles (hero h1, section h2 main titles) */
/* Geist uppercase: labels, eyebrows, subtitles, buttons, hub names, feature titles, nav */

/* ─── NAVBAR ─── */
.navbar {
  background-color: transparent;
  border-bottom: none;
  padding: 1.75rem 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s;
}

.navbar.scrolled {
  background-color: rgba(0,0,0,0.97);
  border-bottom: none;
  position: fixed;
}

.navbar-nav .btn-cta {
  margin-left: 3rem;
}

.navbar.scrolled .btn-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-icon {
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem;
  color: var(--orange);
  border: 3px solid var(--orange);
  padding: 0 0.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-text {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.logo-text span {
  color: var(--orange);
  display: block;
}

.logo-text em {
  color: var(--white);
  font-style: normal;
  display: block;
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 1rem !important;
  transition: color 0.2s;
  line-height: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}

.navbar-toggler {
  border-color: var(--orange);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.btn-cta {
  background-color: var(--orange);
  color: var(--white);
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 1.2rem 1.8rem;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.btn-cta:hover {
  background-color: #e05e00;
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/header.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 109, 0, 1) 0%,
    rgba(255, 109, 0, 1) 10%,
    rgba(255, 109, 0, 0.65) 25%,
    rgba(255, 109, 0, 0.0) 50%,
    transparent 100%
  );
  z-index: 1;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 0 0 5rem;
}

.hero-eyebrow {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.8rem, 6vw, 6rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
  letter-spacing: 0.01em;
}

.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Geist', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.2rem;
}

.btn-hero {
  background-color: var(--white);
  color: var(--orange);
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-hero-outline {
  background-color: transparent;
  color: var(--white);
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.75rem 1.8rem;
  border-radius: 0;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-outline:hover {
  background-color: var(--white);
  color: var(--orange);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── SECTION STYLES ─── */
.section-eyebrow {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* Anton for big display section titles */
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.608rem, 7.2vw, 5.76rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

/* Geist uppercase for smaller section labels */
.section-label {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── TEXT OUTLINE STYLES ─── */
/* On dark/orange backgrounds */
.text-outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* On white backgrounds */
.text-outline-dark {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
}

/* On dark section backgrounds */
.text-outline-light {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* On orange CTA background */
.text-outline-white {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

/* ─── WIDER CONTAINER ─── */
.container {
  max-width: 1380px;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background-color: var(--white);
  padding: 9rem 0 3rem 0;
}

.about-section .section-title {
  color: var(--black);
  font-size: clamp(3.686rem, 5.76vw, 4.608rem);
}

.about-text {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0,0,0,0.7);
  line-height: 1.75;
}

/* ─── FEATURES TICKER ─── */
.features-ticker-wrap {
  overflow: hidden;
  width: 100%;
  background: var(--white);
  padding: 5rem 0 9rem 5rem;
}

.features-ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.features-ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feature-ticker-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem;
  margin: 0 1rem;
  background: #f5f5f5;
  border: none;
  min-width: 400px;
  flex-shrink: 0;
  border-radius: 8px;
}

.feature-ticker-icon {
  font-size: 2.2rem;
  color: var(--light-gray);
}

.feature-ticker-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--black);
}

.feature-ticker-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
  line-height: 1.6;
  max-width: 260px;
}

/* ─── HUBS + CTA SHARED BACKGROUND WRAPPER ─── */
.hubs-cta-wrap {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 width=%222560%22 height=%221440%22%3E%3Cg filter=%22url(%23a)%22%3E%3Cpath d=%22M-1280-720h5120v2880h-5120z%22%2F%3E%3Cpath d=%22M404-149-614 246 703 1537.2 1122 675%22%2F%3E%3Cpath d=%22M598-97 471 695l934 907.2 935-343.2%22 fill=%22%23ff6d00%22%2F%3E%3Cpath d=%22m2448 614-1409 426 996 1493.2L3010 1500%22 fill=%22%23ff6d00%22%2F%3E%3Cpath d=%22M989 358-409 1523l348 769.2L1453 1422%22%2F%3E%3Cpath d=%22m943 981-733 367 726 1332.2 962-786.2%22%2F%3E%3Cpath d=%22m2938 1077-1728 788 469 830.2L2964 1234%22%2F%3E%3C%2Fg%3E%3Cpath fill=%22%23fff%22 filter=%22url(%23b)%22 d=%22M0 0h2560v1440H0z%22%2F%3E%3Cdefs%3E%3Cfilter id=%22b%22 x=%22-1024%22 y=%22-576%22 width=%223584%22 height=%222016%22 filterUnits=%22userSpaceOnUse%22 primitiveUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22linearRGB%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%22.042%22 numOctaves=%224%22 seed=%2215%22 stitchTiles=%22no-stitch%22 x=%220%22 y=%220%22 width=%222560%22 height=%221440%22 result=%22turbulence%22%2F%3E%3CfeSpecularLighting surfaceScale=%2210%22 specularConstant=%22.022%22 specularExponent=%2220%22 lighting-color=%22%23fff%22 x=%220%22 y=%220%22 width=%222560%22 height=%221440%22 in=%22turbulence%22 result=%22specularLighting%22%3E%3CfeDistantLight azimuth=%223%22 elevation=%22100%22%2F%3E%3C%2FfeSpecularLighting%3E%3C%2Ffilter%3E%3Cfilter id=%22a%22 x=%22-256%22 y=%22-256%22 width=%223072%22 height=%221952%22 filterUnits=%22userSpaceOnUse%22 color-interpolation-filters=%22sRGB%22%3E%3CfeFlood flood-opacity=%220%22 result=%22BackgroundImageFix%22%2F%3E%3CfeBlend in=%22SourceGraphic%22 in2=%22BackgroundImageFix%22 result=%22shape%22%2F%3E%3CfeGaussianBlur stdDeviation=%22256%22 result=%22effect1_foregroundBlur_1_2%22%2F%3E%3C%2Ffilter%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

/* ─── HUBS PREVIEW ─── */
.hubs-section {
  background: transparent;
  padding: 12rem 0;
}

.hub-card {
  border: none;
  padding: 3rem;
  border: 1px solid #FFF;
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
}

.hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  color: var(--white);
}

/* Geist uppercase for location label */
.hub-card-location {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* Geist uppercase for hub city names */
.hub-card-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.hub-card-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hub-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.partner-badge {
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: 1px solid #e05e00;
  color: var(--white);
  padding: 0.5rem 1rem;
}

.hub-card-arrow {
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.coming-soon-badge {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* ─── MISSION SECTION ─── */
.mission-section {
  background: var(--white);
  padding: 6rem 0;
}

.mission-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.56rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: 0.01em;
}

.mission-quote .accent {
  color: var(--orange);
}

.mission-body {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: rgba(0,0,0,0.6);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.75;
}

/* ─── NETWORK SECTION ─── */
.network-section {
  background-color: var(--dark-gray);
  padding: 6rem 0;
}

.network-stat {
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--mid-gray);
}

.network-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: 4.2rem;
  color: var(--orange);
  line-height: 1;
}

.network-stat-label {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ─── CTA SECTION ─── */
.cta-section {
  position: relative;
  padding: 3rem 0 12rem 0;
  overflow: hidden;
  background: transparent;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cta.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-section .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 109, 0, 0.88);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3.648rem, 5.76vw, 4.56rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.btn-white {
  background-color: var(--white);
  color: var(--orange);
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 0;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
  background-color: var(--orange);
  background: var(--orange) url(images/footer.svg) no-repeat;
  background-size: auto 100%;
  padding: 6rem 0 1.5rem;
}

.footer-logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
}

.footer-logo-text span {
  color: var(--orange);
}

.footer-tagline {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: var(--white);
  margin-top: 0.5rem;
}

.footer-heading {
  font-family: 'Geist Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-family: 'Geist Mono', monospace;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--black);
}

.footer-copy-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 4rem;
  font-family: 'Geist', sans-serif;
  font-size: 0.78rem;
  color: var(--white);
}

.footer-copy-bar a {
  color: var(--white);
}

/* ─── ABOUT WORLD MAP ─── */
.about-worldmap {
  width: 100%;
}

.worldmap-svg {
  width: 100%;
  height: auto;
  display: block;
}
.worldmap-land {
  fill: rgba(0, 0, 0, 0.08);
  stroke: rgba(0, 0, 0, 0.15);
  stroke-width: 1;
}

.hub-connection-line {
  stroke: rgba(255, 109, 0, 0.25);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.hub-dot-fill {
  fill: var(--orange);
  filter: drop-shadow(0 0 5px rgba(255,109,0,0.7));
}

.hub-dot-pulse-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  opacity: 0.5;
  animation: map-pulse 2s ease-out infinite;
}

.hub-map-dot:nth-child(1) .hub-dot-pulse-ring { animation-delay: 0s; }
.hub-map-dot:nth-child(2) .hub-dot-pulse-ring { animation-delay: 0.4s; }
.hub-map-dot:nth-child(3) .hub-dot-pulse-ring { animation-delay: 0.8s; }
.hub-map-dot:nth-child(4) .hub-dot-pulse-ring { animation-delay: 1.2s; }
.hub-map-dot:nth-child(5) .hub-dot-pulse-ring { animation-delay: 1.6s; }

@keyframes map-pulse {
  0%   { r: 6; opacity: 0.6; }
  100% { r: 18; opacity: 0; }
}

.hub-dot-label {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 11px;
  fill: rgba(0, 0, 0, 0.55);
  text-anchor: middle;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-copy {
  padding-top: 4rem;
  color: var(--white);
  font-size: 0.9rem;
}

/* ─── HUB PAGES ─── */
.hub-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hub-hero-content {
  position: relative;
  z-index: 2;
  padding: 12rem 0 7rem;
  width: 100%;
}

.hub-hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.hub-hero-location {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.hub-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hub-content-section {
  background-color: var(--white);
  padding: 7rem 0;
}

.hub-content-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.hub-partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hub-partner-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hub-partner-list li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hub-partner-list li a {
  display: block;
  padding: 1rem 0;
  font-family: 'Geist Mono', monospace;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.hub-partner-list li a:hover {
  color: var(--orange);
  padding-left: 0.5rem;
}

.hub-cta-section {
  padding: 8rem 0;
}

/* ─── HUB CTA BLOCK (sidebar) ─── */
.hub-cta-block {
  background-color: var(--orange);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hub-cta-block-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

.hub-cta-block-text {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ─── HUB DETAIL PAGES ─── */
.hub-hero-subtitle {
  font-family: 'Geist', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.hub-why-join {
  display: flex;
  flex-direction: column;
}

.hub-why-item {
  min-width: unset !important;
  flex-shrink: unset !important;
  animation: none !important;
  max-width: 100%;
}

/* ─── HUB STATS SECTION ─── */
.hub-stats-section {
  background-color: var(--orange);
  padding: 7rem 0;
}

.hub-stat-number {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hub-stat-unit {
  font-size: 0.6em;
}

.hub-stat-label {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 0.25rem;
  padding: 0 1rem;
}

/* ─── HUB MEMBERS SECTION ─── */
.hub-members-section {
  background-color: var(--white);
  padding: 7rem 0;
}

.hub-members-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.hub-member-card {
  background: #f5f5f5;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.hub-member-name {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
}

.hub-member-tagline {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hub-member-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  flex-grow: 1;
}

.hub-member-link {
  color: var(--orange);
  font-size: 1.5rem;
  margin-top: 1rem;
  display: inline-block;
  transition: transform 0.2s;
}

.hub-member-link:hover {
  transform: translateX(4px);
  color: #e05e00;
}

/* ─── EVENT CARDS ─── */
.event-card {
  background: #f5f5f5;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.event-card--past {
  opacity: 0.75;
}

.event-date {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.event-location {
  font-family: 'Geist', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 1rem;
}

.event-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-bottom: 0.75rem;
}

.event-desc {
  font-family: 'Geist', sans-serif;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.event-link {
  font-family: 'Geist Mono', monospace;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.event-link:hover {
  color: #e05e00;
  gap: 0.7rem;
}

/* ─── ABOUT PAGE PRICE BLOCK ─── */
.about-price-block {
  background: #f5f5f5;
  padding: 1.5rem 2rem;
  display: inline-block;
}

.about-price-amount {
  font-family: 'Anton', sans-serif;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.01em;
}

.about-price-period {
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.4);
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  margin-left: 0.25rem;
}

.about-price-note {
  font-family: 'Geist', sans-serif;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.hub-member-logo {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 1.25rem;
  display: block;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  /* Mobile navbar: white border, no border-radius, white hamburger */
  .navbar-toggler {
    border: 2px solid var(--white);
    border-radius: 0;
    padding: 0.4rem 0.6rem;
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: none;
  }

  /* Mobile menu: dark background on entire navbar when open */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background-color: transparent;
    margin: 0 -1rem;
    padding: 1rem 1rem 1.5rem;
  }
  .navbar:has(.navbar-collapse.show),
  .navbar:has(.navbar-collapse.collapsing) {
    background-color: rgba(0, 0, 0, 0.97) !important;
  }

  /* Mobile nav links: left-aligned, more spacing */
  .navbar-nav {
    align-items: flex-start !important;
    gap: 0 !important;
  }
  .navbar-nav .nav-link {
    padding: 0.85rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .navbar-nav .btn-cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Mobile world map: full width */
  .about-worldmap {
    margin-right: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(3.84rem, 6vw, 6rem); }
  .hero-stats { gap: 1.5rem; }
  .hero-bottom-bar { flex-direction: column; align-items: flex-start; }

  /* 20% smaller titles on mobile */
  .section-title {
    font-size: clamp(3.686rem, 5.76vw, 4.608rem);
    font-size: clamp(2.95rem, 10vw, 3.686rem);
  }
  .about-section .section-title {
    font-size: clamp(2.35rem, 8vw, 2.95rem);
  }
  .cta-title {
    font-size: clamp(2.92rem, 7vw, 3.648rem);
  }
  .hub-hero-title {
    font-size: clamp(3.2rem, 8vw, 5.6rem);
  }
  .hub-content-title {
    font-size: clamp(1.44rem, 5vw, 1.92rem);
  }
}
