/* IceGuard: visual language from the product's promotional materials.
   Typography inherits the site's Google Sans family. */
.vpn-promo__container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.vpn-promo__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  overflow: hidden;
  padding: 64px;
  border: 1px solid #1d2b44;
  border-radius: 28px;
  background: radial-gradient(ellipse at 77% 45%, #162f58 0, #0c182b 30%, #080e19 66%);
  color: #f6f8fc;
}

.vpn-promo__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.vpn-promo__eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
  color: #a7b9d4;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .1em;
}

.vpn-promo__eyebrow span {
  color: #586d8f;
}

.vpn-promo__title {
  margin: 0;
  color: #f6f8fc;
  font-size: clamp(32px, 3.7vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.vpn-promo__title span {
  color: #8dbbff;
}

.vpn-promo__description {
  max-width: 440px;
  margin: 24px 0 28px;
  color: #b9c7dc;
  font-size: 17px;
  line-height: 1.65;
}

.vpn-promo__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  max-width: 100%;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #f3f7ff;
  color: #14274e;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

.vpn-promo__button:hover {
  background: #bcd7ff;
  color: #0b1a35;
}

.vpn-promo__button:focus-visible {
  outline: 3px solid #8dbbff;
  outline-offset: 5px;
}

.vpn-promo__button svg {
  flex-shrink: 0;
}

.vpn-promo__gift {
  max-width: 360px;
  margin: 18px 0 0;
  color: #94a6c1;
  font-size: 13px;
  line-height: 1.6;
}

.vpn-promo__visual {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  text-align: center;
}

.vpn-promo__orbit,
.vpn-promo__orbit::before,
.vpn-promo__orbit::after {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border: 1px solid rgb(141 187 255 / 8%);
  border-radius: 50%;
  pointer-events: none;
}

.vpn-promo__orbit {
  top: 40%;
  left: 50%;
  width: 450px;
  transform: translate(-50%, -50%);
}

.vpn-promo__orbit::before,
.vpn-promo__orbit::after {
  content: "";
  inset: -44px;
}

.vpn-promo__orbit::after {
  inset: 44px;
}

.vpn-promo__logo {
  display: block;
  width: clamp(210px, 21vw, 280px);
  height: auto;
  border-radius: 21%;
  box-shadow: 0 28px 70px rgb(0 0 0 / 28%);
  transform: rotate(-7deg);
}

.vpn-promo__brand {
  margin: 30px 0 0;
  color: #f6f8fc;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.vpn-promo__caption {
  margin: 10px 0 0;
  color: #a7b9d4;
  font-size: 13px;
  line-height: 1.5;
}

.vpn-promo__modes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.vpn-promo__mode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgb(141 187 255 / 18%);
  border-radius: 10px;
  background: rgb(21 37 63 / 64%);
  color: #d8e5f9;
  font-size: 12px;
  line-height: 1.5;
}

.vpn-promo__mode svg {
  flex-shrink: 0;
  color: #8dbbff;
}

@media (max-width: 991px) {
  .vpn-promo__card {
    gap: 24px;
    padding: 40px 32px;
  }

  .vpn-promo__description {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .vpn-promo__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .vpn-promo__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    padding: 32px 24px;
    border-radius: 20px;
    background: radial-gradient(ellipse at 50% 77%, #162f58 0, #0c182b 30%, #080e19 70%);
  }

  .vpn-promo__eyebrow {
    gap: 8px;
    margin-bottom: 22px;
    font-size: 10px;
  }

  .vpn-promo__title {
    font-size: clamp(30px, 7.8vw, 48px);
  }

  .vpn-promo__description {
    margin-top: 20px;
    font-size: 15px;
  }

  .vpn-promo__button {
    width: 100%;
    gap: 12px;
    padding: 15px 12px;
  }

  .vpn-promo__visual {
    padding: 12px 0 0;
  }

  .vpn-promo__logo {
    width: 180px;
  }

  .vpn-promo__brand {
    margin-top: 26px;
    font-size: 25px;
  }

  .vpn-promo__modes {
    gap: 8px;
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vpn-promo__button {
    transition: none;
  }
}
