* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #08090d;
  color: #ffffff;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav nav {
  display: flex;
  gap: 18px;
  color: #b8bdcc;
  font-size: 14px;
}

.hero {
  min-height: 92vh;
  padding: 160px 8% 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(112, 75, 255, 0.35), transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(0, 210, 255, 0.22), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(255, 76, 168, 0.18), transparent 30%);
}

.badge {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #cbd0df;
  background: rgba(255,255,255,0.06);
}

h1 {
  max-width: 950px;
  margin: 24px 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.subtitle {
  max-width: 680px;
  color: #b8bdcc;
  font-size: 22px;
  line-height: 1.5;
}

.actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  padding: 15px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.primary {
  background: #ffffff;
  color: #08090d;
}

.secondary {
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}

.phone-section {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

.phone {
  width: min(380px, 90vw);
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(145deg, #2b2f3a, #0d0f16);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55);
}

.screen {
  min-height: 620px;
  padding: 28px;
  border-radius: 36px;
  background: #10121a;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.post {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
}

.avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #08090d;
  font-weight: 800;
}

.post p {
  margin: 6px 0 0;
  color: #b8bdcc;
  line-height: 1.4;
}

.features {
  padding: 80px 8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.features article {
  min-height: 260px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
}

.features h2,
.final h2 {
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.features p,
.final p {
  color: #b8bdcc;
  line-height: 1.6;
}

.final {
  padding: 120px 8%;
  text-align: center;
}

footer {
  padding: 28px 8%;
  display: flex;
  justify-content: space-between;
  color: #8d93a6;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 18px 6%;
  }

  .hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  footer {
    flex-direction: column;
    gap: 14px;
  }
.legal {
  max-width: 820px;
  padding: 150px 8% 80px;
  margin: 0 auto;
}

.legal h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.legal h2 {
  margin-top: 38px;
  font-size: 24px;
}

.legal p {
  color: #c2c7d6;
  line-height: 1.7;
}

.legal a {
  text-decoration: underline;
}
  
}
