/* ═══════════════════════════════════════
   MAIN STYLES
   nav · hero · ticker · pain · features
   how · proof · cities · cta · footer
═══════════════════════════════════════ */

/* ════════════ NAV ════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--green);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.nav-logo-mark svg {
  width: 16px;
  height: 16px;
  stroke: white;
  fill: none;
  stroke-width: 2.2;
}
.nav-logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  transition: color 0.3s;
}
#nav.scrolled .nav-logo-name {
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}
#nav.scrolled .nav-links a {
  color: var(--mute);
}
#nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
#nav.scrolled .nav-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
#nav.scrolled .nav-cta:hover {
  background: #000;
}

@media (max-width: 768px) {
  #nav {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
}

/* ════════════ HERO ════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Grid lines */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 40% 55%,
    black,
    transparent 80%
  );
  pointer-events: none;
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: glow-float 13s ease-in-out infinite;
}
.hero-glow-a {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.16), transparent 68%);
  top: -140px;
  left: -80px;
}
.hero-glow-b {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.09), transparent 68%);
  bottom: -60px;
  right: 8%;
  animation-delay: -6.5s;
}
@keyframes glow-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(28px, -18px) scale(1.04);
  }
  70% {
    transform: translate(-16px, 24px) scale(0.97);
  }
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.hero-left {
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-up 0.7s var(--ease) 0.1s forwards;
}
.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-pulse 2s infinite;
}
.hero-pill-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.3px;
}

.hero-h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-h1 .line {
  display: block;
  overflow: hidden;
}
.hero-h1 .inner {
  display: block;
  transform: translateY(108%);
  animation: line-up 0.85s var(--ease) forwards;
}
.hero-h1 .line:nth-child(1) .inner {
  animation-delay: 0.28s;
}
.hero-h1 .line:nth-child(2) .inner {
  animation-delay: 0.42s;
}
.hero-h1 .line:nth-child(3) .inner {
  animation-delay: 0.56s;
}
.hero-h1 .green {
  color: var(--green);
}
.hero-h1 .dim {
  color: rgba(255, 255, 255, 0.22);
}

@keyframes line-up {
  to {
    transform: translateY(0);
  }
}
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.42);
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  animation: hero-fade-up 0.85s var(--ease) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 0.85s var(--ease) 1.05s forwards;
}

/* Stats row under actions */
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade-up 0.85s var(--ease) 1.25s forwards;
}
.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  line-height: 1;
}
.hero-stat-num .g {
  color: var(--green);
}
.hero-stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 5px;
  letter-spacing: 0.1px;
}

/* RIGHT — hero image */
.hero-right {
  position: relative;
  opacity: 0;
  animation: hero-fade-up 1s var(--ease) 0.6s forwards;
}
.hero-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /* aspect ratio 4:5 */
  aspect-ratio: 4 / 5;
  background: #1a1a1a;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Overlay gradient bottom */
.hero-image-frame::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.7), transparent);
}
/* Floating stat card on image */
.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px 20px;
  z-index: 3;
}
.hero-float-card .hfc-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}
.hero-float-card .hfc-num .g {
  color: var(--green);
}
.hero-float-card .hfc-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 3px;
  font-weight: 500;
}
.hero-float-card-2 {
  position: absolute;
  top: 28px;
  right: -24px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: hero-fade-up 1s var(--ease) 1.8s forwards;
}
.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}
.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }
  .hero-right {
    order: -1;
    max-width: 340px;
  }
  .hero-float-card {
    left: -10px;
  }
  .hero-float-card-2 {
    right: -10px;
  }
}
@media (max-width: 768px) {
  #hero {
    padding: 90px 0 60px;
  }
  .hero-wrap {
    padding: 0 20px;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-right {
    display: none;
  }
}

/* ════════════ TICKER ════════════ */
.ticker-wrap {
  background: var(--ink2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink2), transparent);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--ink2), transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 26s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker-move {
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  white-space: nowrap;
}
.ticker-item strong {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.1px;
}
.ticker-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ════════════ PAIN SECTION ════════════ */
#pain {
  padding: 112px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.pain-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.pain-h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 14px;
}
.pain-sub {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 400;
  max-width: 380px;
  margin-bottom: 40px;
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pain-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border2);
  transition: padding-left 0.3s var(--ease);
}
.pain-item:first-child {
  border-top: 1px solid var(--border2);
}
.pain-item:hover {
  padding-left: 6px;
}
.pain-item-n {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  padding-top: 2px;
  flex-shrink: 0;
  width: 20px;
  font-variant-numeric: tabular-nums;
}
.pain-item h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  letter-spacing: -0.15px;
}
.pain-item p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.62;
}

/* Right — data / image card */
.pain-right {
  position: sticky;
  top: 88px;
}
.pain-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg);
  position: relative;
  margin-bottom: 16px;
}
.pain-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pain-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
.pain-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

.data-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.data-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
}
.data-pill:hover {
  border-color: var(--green-bd);
  background: var(--green-lt);
}
.data-pill-label {
  font-size: 13px;
  color: var(--mid);
  font-weight: 400;
}
.data-pill-val {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.dv-green {
  color: var(--green);
}
.dv-ink {
  color: var(--ink);
}

@media (max-width: 900px) {
  .pain-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pain-right {
    position: static;
  }
}

/* ════════════ FEATURES (AUTO CAROUSEL) ════════════ */
#features {
  padding: 112px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.features-header {
  margin-bottom: 52px;
}
.features-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 10px;
}
.features-sub {
  font-size: 15px;
  color: var(--mute);
  font-weight: 400;
  line-height: 1.65;
  max-width: 440px;
}

/* Tab strip */
.feat-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.feat-tabs::-webkit-scrollbar {
  display: none;
}
.feat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.feat-tab:hover {
  color: var(--ink);
}
.feat-tab.active {
  color: var(--ink);
  border-bottom-color: var(--green);
}
.feat-tab-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border2);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--mute);
  transition: all 0.25s;
}
.feat-tab.active .feat-tab-num {
  background: var(--green);
  color: var(--white);
}

/* Panel */
.feat-panels {
  position: relative;
}
.feat-panel {
  display: none;
  animation: panel-appear 0.45s var(--ease);
}
.feat-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@keyframes panel-appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fp-content {
}
.fp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.fp-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.8;
}
.fp-title {
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.fp-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 400;
}
.fp-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink2);
  line-height: 1.55;
}
.fp-point::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Feature image / visual */
.fp-visual {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border2);
  position: relative;
}
.fp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Image placeholder styling */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f3f3, #e8e8e8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--mute);
}
.img-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--mute2);
  fill: none;
  stroke-width: 1.5;
}
.img-placeholder span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mute2);
}

/* Auto-progress bar under tabs */
.feat-progress-bar {
  height: 2px;
  background: var(--border);
  border-radius: 1px;
  margin-top: 36px;
  overflow: hidden;
}
.feat-progress-fill {
  height: 100%;
  background: var(--green);
  border-radius: 1px;
  width: 0%;
  transition: width linear;
}

@media (max-width: 900px) {
  .feat-panel.active {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fp-visual {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 768px) {
  #features {
    padding: 80px 0;
  }
  .feat-tab {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ════════════ HOW IT WORKS ════════════ */
#how {
  padding: 112px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.how-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 8px;
}
.how-sub {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 56px;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
/* Connector line between steps */
.how-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.how-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.how-step.active .how-step-circle {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.12);
}
.how-step-circle svg {
  width: 18px;
  height: 18px;
  stroke: var(--mute);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}
.how-step.active .how-step-circle svg {
  stroke: var(--white);
}
.how-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.1px;
}
.how-step p {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.6;
}
.how-step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  padding: 3px 9px;
  border-radius: 100px;
}
.how-note {
  margin-top: 56px;
  padding: 20px 24px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.how-note-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--green-lt);
  border: 1px solid var(--green-bd);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.how-note-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}
.how-note p {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}
.how-note a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .how-steps::before {
    display: none;
  }
}
@media (max-width: 540px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
  .how-step {
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    gap: 16px;
  }
  .how-step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ════════════ PROOF / STATS ════════════ */
#proof {
  padding: 112px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.proof-h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 8px;
}
.proof-sub {
  font-size: 15px;
  color: var(--mute);
  line-height: 1.65;
  margin-bottom: 56px;
  max-width: 440px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.proof-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s var(--ease);
  cursor: default;
}
.proof-card:hover {
  border-color: var(--green-bd);
  background: var(--green-lt);
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.06);
}
.proof-num {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.055em;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.proof-num .g {
  color: var(--green);
}
.proof-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  margin-top: 10px;
}
.proof-sub-label {
  font-size: 11px;
  color: var(--mute2);
  margin-top: 4px;
}

/* Proof image section */
.proof-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.proof-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--border2);
}
.proof-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-context {
}
.proof-context-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.proof-context-body {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.72;
  margin-bottom: 20px;
}
.proof-city-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.city-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s;
}
.city-pill:hover {
  border-color: var(--green-bd);
  background: var(--green-lt);
  color: var(--green);
}
.city-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mute2);
}
.city-pill.live {
  border-color: var(--green-bd);
  background: var(--green-lt);
  color: var(--green);
}
.city-pill.live .city-pill-dot {
  background: var(--green);
  animation: dot-pulse 2s infinite;
}

@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-image-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════ CTA ════════════ */
#cta {
  padding: 120px 40px;
  background: #0c0c0c;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow-a,
.cta-glow-b {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-float 14s ease-in-out infinite;
}
.cta-glow-a {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.11), transparent 68%);
  top: -160px;
  left: -60px;
}
.cta-glow-b {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.07), transparent 68%);
  bottom: -100px;
  right: 5%;
  animation-delay: -7s;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-h2 {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-h2 .g {
  color: var(--green);
}
.cta-body {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.72;
  max-width: 420px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  #cta {
    padding: 80px 20px;
  }
}

/* ════════════ FOOTER ════════════ */
#footer {
  background: var(--ink2);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  #footer {
    padding: 28px 20px;
  }
  .footer-links {
    gap: 16px;
  }
}
