* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0b0b0f;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 100vh;
  padding: 30px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
    radial-gradient(circle at top left, #ff007f55, transparent 35%),
    #0b0b0f;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo {
  color: #ff2f92;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.links a:hover {
  color: #ff2f92;
}

.hero-content {
  max-width: 850px;
  margin-top: 110px;
}

.hero-logo {
  display: block;
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 18px rgba(255, 47, 146, 0.28));
}

.tag {
  color: #ff2f92;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: clamp(42px, 8vw, 95px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-content p {
  max-width: 650px;
  color: #ddd;
  font-size: 18px;
  line-height: 1.7;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
}

.btn {
  padding: 15px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.primary {
  background: #ff2f92;
  color: #050505;
}

.secondary {
  border: 2px solid #ff2f92;
  color: #ff2f92;
}

.section {
  padding: 90px 30px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  font-size: 42px;
  color: #ff2f92;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.tab-panel h3 {
  font-size: 32px;
  color: #ff2f92;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-desc {
  color: #ccc;
  max-width: 750px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.tabs-section {
  max-width: 1180px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  display: block;
  background: #171720;
  color: inherit;
  text-decoration: none;
  border: 1px solid #ff2f9244;
  padding: 25px;
  box-shadow: 8px 8px 0 #ff2f92;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 12px 12px 0 #ff2f92;
}

.card span {
  color: #ff2f92;
  font-size: 13px;
  font-weight: bold;
}

.card h4 {
  margin: 12px 0;
  font-size: 24px;
}

.card p {
  color: #ccc;
  line-height: 1.6;
}

.poem {
  background: #f5f5f5;
  color: #111;
  padding: 35px;
  max-width: 650px;
  transform: rotate(-1deg);
  box-shadow: 10px 10px 0 #ff2f92;
}

.poem h4 {
  font-size: 28px;
  margin-bottom: 20px;
}

.poem p {
  font-size: 20px;
  line-height: 1.7;
}

.manifesto {
  font-size: 22px;
  line-height: 1.8;
}

.manifesto p {
  margin-bottom: 25px;
}

.mural-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.mural-grid div {
  background: #ff2f92;
  color: #080808;
  padding: 25px;
  font-weight: 900;
  font-size: 20px;
  transform: rotate(-2deg);
}

.mural-grid div:nth-child(even) {
  background: #f5f5f5;
  transform: rotate(2deg);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.tab-button {
  min-height: 46px;
  padding: 12px 18px;
  background: #171720;
  color: #f5f5f5;
  border: 1px solid #ff2f9266;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-button:hover,
.tab-button.active {
  background: #ff2f92;
  color: #070707;
}

.tab-panels {
  background: #111118;
  border: 1px solid #ff2f9244;
  box-shadow: 10px 10px 0 #ff2f92;
  padding: 32px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

footer {
  padding: 30px;
  text-align: center;
  color: #aaa;
  border-top: 1px solid #ff2f9244;
}

@media (max-width: 650px) {
  .hero {
    min-height: auto;
    padding: 22px;
    padding-bottom: 70px;
  }

  .navbar {
    align-items: flex-start;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .logo {
    font-size: 22px;
  }

  .links {
    width: 100%;
  }

  .hero-content {
    margin-top: 70px;
  }

  .hero-logo {
    width: 85px;
    height: 85px;
    margin-bottom: 18px;
  }

  .hero-content h2 {
    font-size: clamp(38px, 14vw, 60px);
  }

  .hero-content p {
    font-size: 16px;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 65px 22px;
  }

  .section h2 {
    font-size: 34px;
  }

  .tab-panel h3 {
    font-size: 27px;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tab-button {
    padding: 11px 10px;
    font-size: 13px;
  }

  .tab-panels {
    padding: 24px 18px;
    box-shadow: 6px 6px 0 #ff2f92;
  }

  .poem {
    padding: 25px;
  }
}