.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  position: relative;
  padding: 2rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% 45% 20% -10%;
  background: radial-gradient(circle at top, rgba(46, 230, 214, 0.3), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

.hero-copy h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.9rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--prism-cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-lede {
  color: var(--prism-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--prism-cyan);
  color: #081018;
  box-shadow: 0 10px 24px rgba(46, 230, 214, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(46, 230, 214, 0.7);
  color: var(--prism-cloud);
  background: rgba(15, 23, 34, 0.6);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 34, 0.4);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: #111826;
  border: 1px solid #1b2636;
  border-radius: 16px;
  padding: 1rem;
}

.highlight-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--prism-muted);
  line-height: 1.5;
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hero-card {
  background: #0f1722;
  border: 1px solid #1b2636;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  min-height: 220px;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
  animation-delay: -2s;
}

.hero-card:nth-child(3) {
  animation-delay: -4s;
}

.hero-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--prism-muted);
}

.hero-card-meta {
  font-weight: 600;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: #0f1722;
  border: 1px solid #1b2636;
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 180px;
}

.feature-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--prism-muted);
  line-height: 1.6;
}

.match-banner {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(46, 230, 214, 0.18), rgba(246, 178, 74, 0.18));
  border: 1px solid #1b2636;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.match-copy h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 0.5rem;
}

.match-copy p {
  color: var(--prism-muted);
}

.match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.community-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.community-copy h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 0.8rem;
}

.community-copy p {
  color: var(--prism-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.thread-list {
  background: #0f1722;
  border: 1px solid #1b2636;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.thread-item {
  padding-bottom: 1rem;
  border-bottom: 1px dashed #273244;
}

.thread-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.thread-title {
  font-weight: 600;
}

.thread-meta {
  color: var(--prism-muted);
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.brand-spotlights {
  margin-top: 2.5rem;
}

.section-title h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 0.4rem;
}

.section-title p {
  color: var(--prism-muted);
  margin-bottom: 1.5rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.spotlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #1b2636;
}

.spotlight-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.spotlight-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7));
}

.spotlight-overlay h3 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 0.8rem;
}

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

  .community-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .spotlight-card img {
    height: 200px;
  }
}
  