@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #050814;
  --fg: #f9fafb;
  --muted: #cbd5f5;
}

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

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

main {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, #201248, #0b0f1f);
  transition: background 0.2s ease-out;
}

body.scrolled .site-header {
  background: linear-gradient(
    to bottom,
    rgba(32, 18, 72, 0.92),
    rgba(5, 8, 20, 0.1),
    transparent
  );
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 79, 163, 0.45));
}

.brand-text {
  font-size: 0.95rem;
  color: #e5e7f5;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #cbd5f5;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4fa3, #4adfff);
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after {
  width: 100%;
}

.hero {
  min-height: 60vh;
  background: radial-gradient(circle at top, #32154a 0, #050814 55%);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero::before {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #ff4fa388 0, transparent 70%);
  top: -70px;
  right: 8%;
  opacity: 0.9;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #4adfff77 0, transparent 70%);
  bottom: -40px;
  left: 6%;
  opacity: 0.8;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 130px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 0 14px #ff4fa355);
}

.hero-title-link {
  color: inherit;
  text-decoration: none;
}

.hero-title-link:hover {
  color: #ffd6f0;
}
.hero h1 {
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.subhead {
  font-size: 1.02rem;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: #cbd5f5;
}

.micro-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #e5e7f5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.btn-primary {
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4fa3, #8a5bff);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 18px #ff4fa355;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px #ff4fa399;
}

.link-secondary {
  align-self: center;
  font-size: 0.96rem;
  color: #4adfff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-line {
  font-size: 0.82rem;
  color: #9ca3c7;
  margin-top: 0.35rem;
}

.hero-latest {
  width: 100%;
  max-width: 460px;
  margin: 1rem auto 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-featured-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
}

.hero-featured-imgwrap {
  border-radius: 1rem;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(5, 8, 20, 0.45);
}

.hero-featured-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.hero-featured-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.hero-featured-title:hover {
  color: #ffd6f0;
}


.section-shell {
  background: #050814;
  padding: 4rem 1.5rem 4.5rem;
  color: #f9fafb;
}

.what-is,
.how-it-works,
.who-for,
.events,
.faq {
  background: #050814;
  padding: 4rem 1.5rem 4.5rem;
  color: #f9fafb;
}

.what-is-inner,
.how-inner,
.who-inner,
.events-inner,
.faq-inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.what-is h2,
.how-it-works h2,
.who-for h2,
.events h2,
.faq h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
}

.what-is-lead,
.how-lead,
.who-lead,
.events-lead {
  max-width: 44rem;
  margin: 0 auto 2.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.what-is-grid,
.how-grid,
.who-grid,
.events-grid {
  display: grid;
  gap: 1.5rem;
}

.what-is-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.who-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.events-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.what-card,
.how-step,
.who-card,
.event-card,
.faq-item {
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  text-align: left;
  border: 1px solid rgba(148, 163, 255, 0.2);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, #32154a 0, #0b0f1f 55%);
}

.how-step,
.event-card,
.faq-item {
  background: radial-gradient(circle at top, #2d184d 0, #050814 60%);
}

.who-card {
  background: radial-gradient(circle at top, #241642 0, #050814 60%);
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #ff4fa3 0, #8a5bff 70%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 14px rgba(255, 79, 163, 0.65);
}

.who-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-card h3 {
  font-size: 1.08rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.event-info p {
  font-size: 0.94rem;
  margin-bottom: 0.45rem;
  color: #d1d5f0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-info .price {
  font-weight: 600;
  margin-top: 0.7rem;
  color: #ffd6f0;
}

.btn-event {
  margin-top: 1.2rem;
  padding: 0.85rem 1.4rem;
  background: linear-gradient(135deg, #ff4fa3, #8a5bff);
  border-radius: 999px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 16px #ff4fa355;
  display: inline-flex;
  justify-content: center;
}

.btn-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px #ff4fa3aa;
}

.event-banner {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(148, 163, 255, 0.18);
}

.event-desc {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #d1d5f0;
  margin: -0.25rem 0 1rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item summary {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  outline: none;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #d1d5f0;
  padding-right: 0.5rem;
}

.faq-item:hover {
  border-color: #ff4fa3;
  box-shadow: 0 0 16px rgba(255, 79, 163, 0.45);
}

.faq-item[open] p {
  animation: fadeIn 0.28s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: radial-gradient(circle at top, #130c24 0, #020412 60%);
  border-top: 1px solid rgba(148, 163, 255, 0.25);
  padding: 2.8rem 1.5rem 2.2rem;
  color: #e5e7f5;
}

.footer-inner {
  max-width: 1050px;
  margin: 0 auto 1.8rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  color: #f9fafb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #4adfff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 79, 163, 0.55));
}

.footer-brand-text {
  font-size: 1rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-bottom {
  max-width: 1050px;
  margin: 0 auto;
  border-top: 1px solid rgba(148, 163, 255, 0.2);
  padding-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #9ca3c7;
}

.footer-small {
  opacity: 0.9;
}

@media (max-width: 1000px) {
  .what-is-grid,
  .how-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding: 4.5rem 1.4rem 3.5rem;
  }

  .hero-logo {
    max-width: 110px;
    margin-bottom: 1rem;
  }

  .subhead {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }
}

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

@media (max-width: 640px) {
  .what-is-grid,
  .how-grid,
  .who-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 4.2rem 1.25rem 3.2rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
