*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: #fff;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0,91,255, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 100%, rgba(255, 75, 216, 0.12), transparent 50%),
    var(--bg, #070B14);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.uns-container {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
}

.uns-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 7, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.uns-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
}

.uns-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 24px;
}

.uns-logo__text span {
  color: var(--accent-2, #4DA3FF);
}

.uns-logo__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent, #005BFF), var(--accent-2, #4DA3FF));
  box-shadow: 0 14px 34px rgba(0,91,255, 0.36);
}

.uns-logo--footer .uns-logo__mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.uns-logo--footer {
  font-size: 20px;
}

.uns-page {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 48px 0 72px;
  overflow: hidden;
}

.uns-page__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.uns-page__glow--1 {
  width: 420px;
  height: 420px;
  background: rgba(0,91,255, 0.22);
  top: 8%;
  left: -10%;
}

.uns-page__glow--2 {
  width: 360px;
  height: 360px;
  background: rgba(255, 75, 216, 0.14);
  bottom: 6%;
  right: -8%;
}

.uns-page__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.uns-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.uns-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2, #4DA3FF);
  box-shadow: 0 0 0 4px rgba(255, 75, 216, 0.2);
  animation: uns-pulse 1.8s ease-in-out infinite;
}

.uns-page h1 {
  font-size: clamp(28px, 4.2vw, 44px);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.uns-accent {
  background: linear-gradient(135deg, var(--accent, #005BFF), var(--accent-2, #4DA3FF));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.uns-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 22px;
  line-height: 1.55;
}

.uns-hints {
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 440px;
}

.uns-hints li {
  position: relative;
  padding: 12px 14px 12px 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.uns-hints li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2, #4DA3FF);
  box-shadow: 0 0 12px rgba(255, 75, 216, 0.55);
}

.uns-page__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.uns-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: uns-float 5s ease-in-out infinite;
}

.uns-phone__body {
  position: relative;
  width: 180px;
  height: 360px;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(160deg, #3a2440 0%, #1a1020 55%, #0d0812 100%);
  box-shadow:
    0 28px 60px rgba(0,91,255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.uns-phone__speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: #06070a;
  z-index: 2;
}

.uns-phone__camera {
  position: absolute;
  top: 16px;
  left: calc(50% + 36px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a1a30;
  box-shadow: inset 0 0 0 2px #5a3a60;
  z-index: 2;
}

.uns-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(180deg, #141C2E 0%, #120c18 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.uns-phone__status {
  display: flex;
  justify-content: space-between;
  padding: 14px 14px 0;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.uns-phone__denied {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.uns-phone__denied-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 75, 216, 0.14);
  color: var(--accent-2, #4DA3FF);
  margin-bottom: 4px;
}

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

.uns-phone__denied strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.uns-phone__denied span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  max-width: 120px;
}

.uns-phone__home {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 10px;
}

.uns-phone__side {
  width: 4px;
  border-radius: 4px;
  background: #2a1a30;
}

.uns-phone__side--left {
  height: 54px;
  margin-right: -1px;
  box-shadow: 0 -48px 0 #2a1a30, 0 48px 0 0 #2a1a30;
}

.uns-phone__side--right {
  height: 72px;
  margin-left: -1px;
}

.uns-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 36px;
}

.uns-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.uns-footer__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

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

@keyframes uns-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.92); }
}

@media (max-width: 900px) {
  .uns-page__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .uns-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .uns-lead,
  .uns-hints {
    margin-left: auto;
    margin-right: auto;
  }

  .uns-hints li {
    text-align: left;
  }

  .uns-page__visual {
    order: -1;
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .uns-page {
    padding-top: 24px;
  }

  .uns-phone__body {
    width: 150px;
    height: 300px;
    border-radius: 30px;
  }

  .uns-phone__screen {
    border-radius: 22px;
  }

  .uns-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
