:root {
  --teal: #1a9b94;
  --teal-soft: #7ecfc9;
  --teal-pale: #e8f7f6;
  --teal-deep: #0d4f4b;
  --ink: #2c3a3a;
  --muted: #5a6a6a;
  --coral: #e86b5a;
  --white: #ffffff;
  --font: "Nunito", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: #f4fbfa;
}

.page {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #d8f3f1 0%, transparent 55%),
    linear-gradient(180deg, #f7fcfb 0%, #eef8f7 45%, #e4f3f1 100%);
}

.skyline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(32vh, 280px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

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

.content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 5vh, 56px) 20px 0;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
}

.pin-logo {
  width: clamp(88px, 14vw, 118px);
  height: auto;
  margin-bottom: 8px;
  filter: drop-shadow(0 10px 22px rgba(26, 155, 148, 0.28));
  animation: float 4.5s ease-in-out infinite;
}

.brand-logo {
  margin: 0;
  line-height: 0;
}

.brand-logo img {
  width: min(100%, 280px);
  height: auto;
}

.tagline .accent {
  color: var(--teal);
  font-weight: 600;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 16px 0 0;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
}

.tagline .line {
  display: block;
  width: clamp(36px, 8vw, 72px);
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.desc {
  margin: 14px auto 0;
  max-width: 34rem;
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--muted);
}

.features {
  list-style: none;
  margin: clamp(36px, 6vh, 56px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  max-width: 980px;
}

.features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 104px;
}

.icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(26, 155, 148, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.features li:hover .icon-circle {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(26, 155, 148, 0.2);
}

.icon-circle svg {
  width: 40px;
  height: 40px;
}

.features li > span:last-child {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  max-width: 9.5ch;
}

.map-area {
  position: relative;
  z-index: 1;
  height: clamp(140px, 22vh, 220px);
  margin-top: clamp(24px, 4vh, 40px);
  pointer-events: none;
}

.map-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  animation: pulse 2.8s ease-in-out infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.map-pin.teal {
  background: var(--teal);
}

.map-pin.coral {
  background: var(--coral);
}

.p1 { left: 12%; top: 28%; animation-delay: 0s; }
.p2 { left: 28%; top: 52%; animation-delay: 0.3s; }
.p3 { left: 44%; top: 22%; animation-delay: 0.6s; }
.p4 { left: 58%; top: 48%; animation-delay: 0.2s; }
.p5 { left: 72%; top: 30%; animation-delay: 0.5s; }
.p6 { left: 84%; top: 55%; animation-delay: 0.8s; }
.p7 { left: 38%; top: 68%; animation-delay: 0.4s; }

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: rotate(-45deg) scale(1);
  }
  50% {
    transform: rotate(-45deg) scale(1.12);
  }
}

@media (max-width: 720px) {
  .features {
    gap: 16px 12px;
  }

  .features li {
    width: 88px;
  }

  .icon-circle {
    width: 62px;
    height: 62px;
  }

  .icon-circle svg {
    width: 34px;
    height: 34px;
  }

  .features li > span:last-child {
    font-size: 0.7rem;
  }

  .tagline {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .map-area {
    height: 120px;
  }
}

@media (max-width: 480px) {
  .features li {
    width: calc(33.33% - 12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
