:root {
  --brand: #0066CC;
  --brand-deep: #00397a;
  --brand-ink: #072a4a;
  --gold: #E7B84B;
  --gold-soft: #f4d78a;
  --gold-deep: #b8892b;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html:not(.lenis) {
  scroll-behavior: smooth;
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.hero-scroll-hint::before {
  content: '';
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: #fff;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }

  35% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translateY(12px);
  }

  100% {
    opacity: 0;
  }
}

.hero-skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  will-change: transform;
}

.hero-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero {
  min-height: 100svh;
}

@media (max-width: 768px) {
  .hero {
    min-height: 82svh;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.45rem;
  }
}

.support {
  padding: 3.2rem 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.85));
  border-top: 1px solid rgba(0, 102, 204, 0.08);
  border-bottom: 1px solid rgba(0, 102, 204, 0.08);
}

.support-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  text-align: left;
}

.support-text {
  max-width: 620px;
  text-align: center;
}

.support-text .support-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}

.support-text h3 {
  font-size: 1.35rem;
  color: var(--brand-ink);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

.support-text p {
  color: #4b5563;
  font-size: 0.98rem;
}

.support-text a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.support-text a:hover {
  text-decoration: underline;
}

.city {
  position: relative;
  padding: 5rem 0 0;
  background: linear-gradient(180deg, #0066CC 0%, #00397a 100%);
  color: #fff;
  overflow: hidden;
}

.city .section-title {
  color: #fff;
}

.city .section-title::after {
  background: var(--gold);
}

.city-lead {
  max-width: 720px;
  margin: 0 auto 2.6rem;
  text-align: center;
  color: #dbeafe;
  font-size: 1.08rem;
  line-height: 1.7;
}

.city-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
}

.city-fact {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1.5rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.city-fact .cf-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1.1;
}

.city-fact .cf-label {
  font-size: 0.9rem;
  color: #cfe0f5;
  margin-top: 0.3rem;
}

.city-skyline {
  margin-top: 3rem;
  width: 100%;
  display: block;
  will-change: transform;
}

.city-skyline svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .city-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nav-cta {
  box-shadow: 0 6px 18px rgba(231, 184, 75, 0.0);
}

.nav-cta:hover {
  box-shadow: 0 8px 20px rgba(231, 184, 75, 0.35);
}

.hero-button {
  box-shadow: 0 10px 30px rgba(7, 42, 74, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.an-char {
  display: inline-block;
  will-change: transform, opacity;
}

.an-word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-button,
.nav-cta {
  transition-property: background, box-shadow, color;
}

.city-fact {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s, border-color 0.3s;
}

.city-fact:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(244, 215, 138, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint::before {
    animation: none;
  }

  .hero-skyline,
  .city-skyline {
    transform: none !important;
  }
}