.polar-section {
  min-height: 100vh;
  position: relative;
  padding: 120px 70px 160px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 18%, rgba(199, 241, 44, 0.11), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(120, 210, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #030905 0%, #07151a 45%, #dfeff2 100%);
}

.polar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(199,241,44,0.08) 36%, transparent 58%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0.025) 1px,
      transparent 1px,
      transparent 90px
    );
  pointer-events: none;
  animation: auroraDrift 9s ease-in-out infinite alternate;
}

.polar-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.polar-copy {
  max-width: 660px;
}

.polar-copy h2 {
  margin: 18px 0 28px;
  font-size: clamp(58px, 8vw, 128px);
  line-height: 0.84;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.polar-copy h2 span {
  color: #c7f12c;
}

.polar-copy p {
  color: rgba(243,239,231,0.58);
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 32px;
}

.polar-control {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 26px;
  padding: 24px;
  background: rgba(3, 9, 5, 0.32);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
}

.polar-control label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243,239,231,0.58);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.polar-control strong {
  color: #c7f12c;
  letter-spacing: -0.03em;
  font-size: 16px;
}

.polar-control input {
  width: 100%;
  accent-color: #c7f12c;
}

.polar-stage {
  position: relative;
  min-height: 650px;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 48% 32%, rgba(255,255,255,0.28), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 35px 100px rgba(0,0,0,0.34);
}

.moon {
  position: absolute;
  top: 72px;
  right: 84px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: rgba(243,239,231,0.86);
  box-shadow: 0 0 80px rgba(243,239,231,0.28);
}

.ice-water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(120,210,255,0.12), rgba(10,55,65,0.8)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.16) 1px,
      transparent 1px,
      transparent 28px
    );
  transition: height 0.45s cubic-bezier(.2,.8,.2,1);
  z-index: 1;
}

.ice-shelf {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 26%;
  height: 110px;
  background: linear-gradient(180deg, #f3efe7, #b8d4d8);
  clip-path: polygon(
    0 32%,
    12% 18%,
    28% 29%,
    42% 12%,
    58% 28%,
    75% 18%,
    100% 35%,
    93% 64%,
    76% 55%,
    58% 72%,
    37% 58%,
    18% 70%,
    0 58%
  );
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.28));
  transition: transform 0.45s ease, opacity 0.45s ease;
  z-index: 2;
}

.polar-bear {
  position: absolute;
  left: 16%;
  bottom: 35%;
  width: 350px;
  height: auto;
  z-index: 3;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,0.28));
}

.stat-float {
  position: absolute;
  width: 170px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(3,9,5,0.42);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  color: #f3efe7;
  box-shadow: 0 18px 60px rgba(0,0,0,0.22);
  z-index: 4;
}

.stat-one {
  top: 52px;
  left: 42px;
  animation: statFloat 4s ease-in-out infinite;
}

.stat-two {
  top: 250px;
  right: 36px;
  animation: statFloat 4.8s ease-in-out infinite reverse;
}

.stat-three {
  bottom: 55px;
  left: 42px;
  animation: statFloat 5.2s ease-in-out infinite;
}

.stat-float .num {
  color: #c7f12c;
  font-size: 36px;
  font-weight: 1000;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.stat-float .label {
  margin-top: 10px;
  color: rgba(243,239,231,0.55);
  line-height: 1.4;
  font-size: 13px;
}

@keyframes auroraDrift {
  from {
    transform: translateX(-3%) skewX(-6deg);
  }

  to {
    transform: translateX(3%) skewX(6deg);
  }
}

@keyframes statFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1000px) {
  .polar-section {
    padding: 110px 24px 130px;
  }

  .polar-content {
    grid-template-columns: 1fr;
  }

  .polar-stage {
    min-height: 560px;
  }

  .polar-bear {
    width: 260px;
    left: 12%;
  }

  .stat-float {
    width: 145px;
  }
}