@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #061d36;
  --bg-deep: #041429;
  --panel: rgba(12, 37, 65, 0.84);
  --panel-soft: rgba(18, 47, 78, 0.58);
  --line: rgba(116, 188, 255, 0.12);
  --blue: #159bff;
  --cyan: #12d7f7;
  --teal: #00dbc4;
  --text: #eef8ff;
  --muted: #9fb4c7;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #fff;
  background: linear-gradient(-45deg, #218CD9, #071A34, #062F46, #0D264B);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;

}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: rgba(72, 177, 255, 0.52);
  box-shadow:
    268px 38px 0 rgba(22, 133, 223, 0.45),
    193px 332px 0 rgba(170, 236, 255, 0.58),
    512px 160px 0 rgba(18, 215, 247, 0.36),
    608px 346px 0 rgba(106, 196, 255, 0.38);
  z-index: -1;
}

.page-shell::before {
  top: 23%;
  left: 34%;
}

.page-shell::after {
  right: 24%;
  bottom: 23%;
  opacity: 0.45;
}

.ambient,
.grid-haze {
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

.ambient-one {
  top: -12rem;
  left: 18%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.16), transparent 66%);
}

.ambient-two {
  right: -8rem;
  bottom: -13rem;
  width: 44rem;
  height: 44rem;
  background: radial-gradient(circle, rgba(7, 221, 207, 0.10), transparent 64%);
}

.grid-haze {
  right: 8%;
  bottom: 8%;
  width: 42rem;
  height: 24rem;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(94, 171, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 171, 255, 0.34) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}

.site-header,
.hero,
.site-footer {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 147px;
  height: 40px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
  padding: 5px 14px;
  border: 1px solid rgba(14, 198, 210, 0.14);
  border-radius: 999px;
  color: #68ddec;
  background: rgba(4, 27, 49, 0.56);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 450px) minmax(560px, 1fr);
  align-items: start;
  gap: 82px;
  min-height: calc(100vh - 178px);
  padding: 54px 0 24px;
}

.hero-copy {
  padding-top: 10px;
}

h1 {
  margin: 0 0 15px;
  font-size: clamp(40px, 4.1vw, 52px);
  line-height: 0.96;
  letter-spacing: 0;
  color: #f3fbff;
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(92deg, #169dff 0%, #10d8ef 48%, #08f0bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 28px rgba(18, 151, 255, 0.20);
}

.intro {
  max-width: 438px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.primary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  font-size: 12px;
  font-weight: 760;
}

.primary-action {
  min-width: 110px;
  gap: 10px;
  padding: 0 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #27abff, #0a7ced);
  box-shadow: 0 14px 34px rgba(0, 128, 255, 0.28);
}

.primary-action span {
  font-size: 14px;
}

.text-action {
  gap: 7px;
  color: #f6fbff;
}

.text-action span {
  color: var(--cyan);
  font-size: 11px;
}

.contact-card {
  width: min(100%, 438px);
  margin-top: 26px;
  padding: 22px 28px 23px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 46, 79, 0.78), rgba(11, 35, 63, 0.73));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-card h2 {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1;
}

.contact-grid {
  display: grid;
  gap: 15px;
}

.contact-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 12px;
}

.contact-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  color: #041b30;
  background: var(--teal);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(0, 219, 196, 0.35);
}

.contact-row p {
  margin: 0 0 3px;
  color: #8aa7bc;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-row a {
  color: #f3fbff;
  font-size: 14px;
}

.visual-wrap {
  position: relative;
  min-height: 430px;
  margin-top: 0;
}

.city-card {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 600px);
  aspect-ratio: 1.25;
  overflow: hidden;
  border-radius: 13px;
  background: #030814;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28), 0 0 70px rgba(0, 126, 255, 0.17);
}

.city-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-card {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 174px;
  padding: 12px 14px;
  border: 1px solid rgba(74, 166, 255, 0.17);
  border-radius: 8px;
  background: rgba(10, 38, 67, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.metric-card strong,
.metric-card small,
.metric-card b {
  display: block;
}


.metric-card strong {
  margin-bottom: 3px;
  font-size: 10px;
  line-height: 16px;
  Font-weight: 500;
}

.metric-card small {
  color: #81a4bd;
  font-size: 8px;
  font-weight: 650;
}

.metric-card b {
  color: var(--teal);
  font-size: 9px;
}
.metric-t i {
  top: 96px;
  right: -28px;
  color: #08f0bd;
}

.metric-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(12, 218, 224, 0.12);
  font-size: 10px;
  font-weight: 900;
}

.metric-top {
  top: 2px;
  left: -26px;
}

.metric-right {
  top: 96px;
  right: -28px;
}


.metric-bottom {
  grid-template-columns: 26px 1fr;
  bottom: 32px;
  left: 52px;
  min-width: 190px;
}

.site-footer {
  padding-bottom: 24px;
  text-align: center;
}

.footer-rule {
  width: min(100%, 610px);
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(97, 176, 236, 0.28), transparent);
}

.site-footer p {
  margin: 0 0 10px;
  color: #e7f4ff;
  font-size: 14px;
  font-weight: 650;
}

.site-footer small {
  color: #86a4ba;
  font-size: 14px;
}

.site-footer small span {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 13px -2px;
  background: rgba(144, 180, 205, 0.34);
}

@media (max-width: 920px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .status-pill {
    margin-top: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding-top: 78px;
  }

  .intro,
  .contact-card {
    max-width: 100%;
  }

  .visual-wrap {
    min-height: 350px;
  }

  .city-card {
    top: 40px;
    right: 0;
    left: 0;
    margin: auto;
    width: min(100%, 600px);
  }

  .metric-top {
    left: 0;
  }

  .metric-right {
    right: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    min-height: 100svh;
  }

  .site-header {
    flex-direction: column;
    padding-top: 22px;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .primary-action,
  .text-action {
    width: 100%;
  }

  .contact-card {
    padding: 22px;
  }

  .visual-wrap {
    min-height: 310px;
  }

  .metric-card {
    transform: scale(0.88);
    transform-origin: left top;
  }

  .metric-right {
    transform-origin: right top;
  }

  .metric-bottom {
    left: 4px;
    bottom: 10px;
  }

}
