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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #090909;
  color: #f5f5f5;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 0, 120, 0.38), transparent 31%),
    radial-gradient(circle at 82% 36%, rgba(0, 229, 255, 0.32), transparent 31%),
    radial-gradient(circle at 50% 95%, rgba(255, 236, 0, 0.18), transparent 35%),
    linear-gradient(135deg, #050505, #111);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.28;
  pointer-events: none;
}

nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
}

.logo span {
  color: #ff2b8a;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.88;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin-top: 130px;
}

.tag,
.small-title {
  color: #00e5ff;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 13px;
}

h1 {
  font-size: clamp(68px, 14vw, 170px);
  line-height: 0.82;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: -7px;
  text-shadow: 7px 7px 0 #ff2b8a, 12px 12px 0 #000;
  margin: 20px 0 18px;
}

.slogan {
  display: inline-block;
  background: #00e5ff;
  color: #050505;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(36px, 7vw, 82px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 1000;
  margin: 12px 0 24px;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.intro {
  font-size: 22px;
  max-width: 740px;
}

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

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}

.primary {
  background: #ff2b8a;
  color: white;
  box-shadow: 6px 6px 0 #00e5ff;
}

.secondary {
  border: 2px solid white;
  color: white;
}

.section {
  padding: 90px 28px;
  max-width: 1150px;
  margin: 0 auto;
}

.section p {
  max-width: 830px;
  font-size: 19px;
  margin-bottom: 18px;
  color: #dfdfdf;
}

.highlight {
  color: #00e5ff !important;
  font-weight: 900;
}

.cards,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card,
.partner-box,
.partner-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 25px;
  border-radius: 24px;
}

.card p {
  font-size: 16px;
}

.partners {
  background:
    linear-gradient(135deg, rgba(255,43,138,0.10), rgba(0,229,255,0.08));
  border-radius: 36px;
}

.partner-card {
  font-weight: 1000;
  text-transform: uppercase;
  text-align: center;
  color: white;
  box-shadow: 4px 4px 0 rgba(255,43,138,0.55);
}

.partner-box {
  margin: 30px 0;
}

ul {
  margin-left: 22px;
  color: #dfdfdf;
}

li { margin-bottom: 8px; }

.vibe,
.contact {
  text-align: center;
}

.vibe p,
.contact p {
  margin-left: auto;
  margin-right: auto;
}

.insta {
  margin-top: 22px;
  color: #00e5ff !important;
  font-weight: 900;
}

footer {
  padding: 28px;
  text-align: center;
  color: #999;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 800px) {
  nav {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .nav-links { flex-wrap: wrap; }

  .hero-content { margin-top: 90px; }

  h1 {
    letter-spacing: -4px;
    text-shadow: 4px 4px 0 #ff2b8a, 8px 8px 0 #000;
  }

  .cards,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 70px 22px; }
}
