@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=JetBrains+Mono:wght@400;500&family=DM+Sans:wght@300;400;500;700&display=swap');

.pn-auto-section {
  padding: 0 0 5rem;
  position: relative;
  z-index: 1;
}

.pn-auto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.pn-auto-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(61, 201, 255, .2);
  padding: 3.5rem 3rem;
  background:
    radial-gradient(circle at 11% 22%, rgba(61, 201, 255, .15) 0%, rgba(61, 201, 255, .03) 32%, transparent 63%),
    radial-gradient(circle at 87% 74%, rgba(91, 227, 160, .13) 0%, rgba(91, 227, 160, .02) 36%, transparent 63%),
    linear-gradient(118deg, rgba(10, 33, 52, .48) 0%, rgba(6, 16, 29, .66) 48%, rgba(8, 28, 26, .54) 100%),
    #0a1019;
  box-shadow:
    inset 0 1px 0 rgba(133, 225, 255, .08),
    0 12px 42px rgba(0, 0, 0, .28);
}

.pn-auto-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .62;
}

.pn-auto-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(61, 201, 255, .16) 0%, transparent 42%),
    radial-gradient(circle at 74% 58%, rgba(91, 227, 160, .12) 0%, transparent 47%);
  opacity: .65;
}

.pn-auto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 3rem;
  align-items: center;
}

.pn-auto-tag {
  display: block;
  margin-bottom: 1.65rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5be3a0;
}

.pn-auto-title {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 4.15vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #ecf2fb;
  font-weight: 700;
}

.pn-auto-title-accent {
  color: #3dc9ff;
}

.pn-auto-desc {
  margin: 1.6rem 0 0;
  max-width: 570px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(232, 234, 242, .54);
  font-size: clamp(1rem, 1.2vw, 1.34rem);
  line-height: 1.55;
  font-weight: 400;
}

.pn-auto-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pn-auto-item {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.pn-auto-item + .pn-auto-item {
  margin-top: 1.22rem;
}

.pn-auto-arrow {
  flex-shrink: 0;
  font-size: clamp(1rem, .45vw + .9rem, 1.3rem);
  color: #3dc9ff;
  line-height: 1;
}

.pn-auto-item-text {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.06rem, .55vw + .9rem, 1.5rem);
  line-height: 1.35;
  color: #ebf1fa;
  font-weight: 500;
}

.pn-auto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-height: 66px;
  width: min(100%, 440px);
  border-radius: 13px;
  padding: .95rem 1.8rem;
  background: #43b8e4;
  border: 1px solid rgba(255, 255, 255, .08);
  color: #041720 !important;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.1rem, .25vw + 1.02rem, 1.3rem);
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.1;
  box-shadow: 0 0 38px rgba(61, 201, 255, .35);
  transition: transform .2s, box-shadow .2s, background .2s;
}

.pn-auto-btn:hover {
  transform: translateY(-2px);
  background: #57c9f4;
  box-shadow: 0 0 46px rgba(61, 201, 255, .44);
}

@media (max-width: 991px) {
  .pn-auto-section {
    padding-bottom: 3.5rem;
  }

  .pn-auto-card {
    padding: 2.7rem 1.8rem;
    border-radius: 20px;
  }

  .pn-auto-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pn-auto-desc {
    max-width: none;
  }

  .pn-auto-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .pn-auto-container {
    padding: 0 1rem;
  }

  .pn-auto-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .pn-auto-item + .pn-auto-item {
    margin-top: .95rem;
  }

  .pn-auto-btn {
    min-height: 58px;
    border-radius: 12px;
    padding: .8rem 1rem;
    font-size: 1.02rem;
  }
}
