:root{
  --bg0:#070712;
  --bg1:#0b0b1a;

  --card:rgba(255,255,255,0.06);
  --card2:rgba(255,255,255,0.09);

  --text:#e8e8ff;
  --muted:rgba(232,232,255,0.75);

  --stroke:rgba(255,255,255,0.12);
  --shadow: 0 18px 45px rgba(0,0,0,0.55);

  --radius:16px;
  --max: 1100px;

  --magenta:#f940d4;
  --magenta-soft: rgba(249,64,212,0.22);
  --magenta-mid: rgba(249,64,212,0.35);
  --magenta-hard: rgba(249,64,212,0.65);

  --gold:#f6d365;
  --blue:rgba(96,165,250,0.14);
  --purple:rgba(192,132,252,0.18);
}

*{ box-sizing:border-box; }
html,body{ min-height: 100%; }

body{
  margin:0;
  min-height: 100vh;
  color:var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    radial-gradient(900px 420px at 50% -10%, var(--magenta-soft), transparent 60%),
    radial-gradient(700px 360px at 18% 28%, var(--purple), transparent 62%),
    radial-gradient(700px 360px at 82% 35%, var(--blue), transparent 62%),
    linear-gradient(180deg, var(--bg0), var(--bg1));

  background-attachment: fixed;
  overflow-x:hidden;
}

/* Subtle “pixel” grid vibe */
body::before{
  content:"";
  position:fixed; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	
  background-size: 26px 26px;
  opacity:0.25;
  pointer-events:none;
  mix-blend-mode: overlay;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
  padding: 32px 0 56px;
	
}

/* Logo */
.logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px 0 18px;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes neonPulse {
  0%, 100% {
    filter:
      drop-shadow(0 14px 26px rgba(0,0,0,0.55))
      drop-shadow(0 0 22px rgba(249,64,212,0.22))
      drop-shadow(0 0 44px rgba(249,64,212,0.10));
  }
  50% {
    filter:
      drop-shadow(0 14px 26px rgba(0,0,0,0.55))
      drop-shadow(0 0 26px rgba(249,64,212,0.35))
      drop-shadow(0 0 60px rgba(249,64,212,0.16));
  }
}

.logo{
  max-width: 980px;
  width: min(980px, 100%);
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  animation: neonPulse 3.2s ease-in-out infinite;
}

/* Nav */
.nav{
  position: sticky;
  top: 14px;
  z-index: 10;
  margin: 0 auto 26px;
  backdrop-filter: blur(10px);
  background: rgba(10,10,25,0.55);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow:hidden;
}

.nav-inner{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:center;
  padding: 10px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration:none;
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  background: rgba(255,255,255,0.03);
}

.nav a:hover{
  background: rgba(249,64,212,0.12);
  border-color: rgba(249,64,212,0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(249,64,212,0.18);
}

.nav a:focus-visible{
  outline: 2px solid rgba(249,64,212,0.6);
  outline-offset: 3px;
}

/* Hero */
.hero{
	
  margin-top: 10px;
  z-index: 1; 
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--stroke);
   background:
    radial-gradient(circle at 50% 75%, rgba(249,64,212,0.18), transparent 62%),
    radial-gradient(circle at 60% 65%, rgba(246,211,101,0.10), transparent 68%);
  box-shadow: var(--shadow);
  padding: 34px 28px;
  text-align:center;
  position:relative;
  overflow:hidden;
  animation: slideUpFade 700ms cubic-bezier(.2,.8,.2,1) both;

}

.hero::after{
  content:"";
  position:absolute;
  left:-220px;
  right:-220px;
  top:-220px;       /* push it up */
  height: 260px;    /* smaller */

  pointer-events:none;
  z-index: 0;
}

h1{
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.15;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);

  background: linear-gradient(90deg, var(--magenta), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle{
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(1.02rem, 2.2vw, 1.18rem);
  line-height: 1.65;
  color: var(--muted);
}

/* Pills */
.pill-row{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill{
  border: 1px solid rgba(249,64,212,0.22);
  background: rgba(255,255,255,0.05);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 650;
  color: rgba(232,232,255,0.9);
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(249,64,212,0.08);
}

.pill strong{ color:#fff; }

/* Sections */
.section{
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  padding: 22px 18px;
}

.section h2{
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}

.section p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
footer{
  margin-top: 22px;
  text-align:center;
  color: rgba(232,232,255,0.55);
  font-size: 0.9rem;
}

/* ---------- Layout ---------- */


/* ---------- Page Header ---------- */
.page-head{
  padding: 10px 6px 22px;
}

.page-head h1{
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 38px);
}

.muted{
  color: #cdbfe6;
}

/* ---------- Members Grid ---------- */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 900px){
  .grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .grid{
    grid-template-columns: 1fr;
  }
}

/* ---------- Member Card ---------- */
.card{
  position: relative;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(
    180deg,
    rgba(249,64,212,0.08),
    rgba(11,6,16,0.9)
  );
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
  overflow: hidden;
}

.card::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
    500px 120px at 30% 0%,
    rgba(249,64,212,0.25),
    transparent 65%
  );
  pointer-events: none;
}

/* ---------- Card Top ---------- */
.card-top{
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.avatar{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #f3eefe;
  background: rgba(249,64,212,0.18);
  border: 1px solid rgba(249,64,212,0.35);
}

.card-title h2{
  margin: 0;
  font-size: 1.15rem;
  opacity: 0;
  animation: slideInFade 500ms cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 200ms;
}

.card-title p{
  margin: 4px 0 0;
  font-size: 0.95rem;
}

/* ---------- Card Actions ---------- */
.card-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  position: relative;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(249,64,212,0.35);
  background: rgba(249,64,212,0.2);
  color: #f3eefe;
  font-weight: 700;
  transition: transform 0.12s ease, background 0.12s ease;
}

.btn:hover{
  transform: translateY(-1px);
  background: rgba(249,64,212,0.35);
}

.btn.btn-ghost{
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #cdbfe6;
}

.btn.btn-ghost:hover{
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

.hero-image{
  display: block;
  max-width: 100%;
  width: min(880px, 100%);
  margin: 22px auto 16px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-text{
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.video{
  max-width: 900px;
  margin: 22px auto 0;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
}


.nav-inner{
  position: relative;
}

/* Hide checkbox */
.nav-toggle{
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Hamburger icon */
.nav-hamburger{
  display: none;
  width: 36px;
  height: 28px;
  cursor: pointer;
  position: relative;
}

.nav-hamburger span{
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-hamburger span:nth-child(1){ top: 4px; }
.nav-hamburger span:nth-child(2){ top: 12px; }
.nav-hamburger span:nth-child(3){ top: 20px; }

/* Links container (desktop default) */
.nav-links{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-list{
  list-style: none;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.nav-list li{ margin: 0; }

.nav-list a{
  display: inline-block;
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.2px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.03);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.nav-list a:hover{
  background: rgba(249,64,212,0.12);
  border-color: rgba(249,64,212,0.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(249,64,212,0.18);
}

.nav-list a:focus-visible{
  outline: 2px solid rgba(249,64,212,0.6);
  outline-offset: 3px;
}

.form-embed{
  max-width: 900px;
  margin: 24px auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.04);
}

.form-embed iframe{
  width: 100%;
  height: 1200px; /* adjust if needed */
  border: 0;
}


/* Mobile: stack into 2 columns so it stays tidy */
@media (max-width: 520px){
  .nav-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-items: stretch;
  }
  .nav-list a{
    text-align: center;
    width: 100%;
  }
}


/* ---------- Mobile ---------- */
@media (max-width: 720px){

  .nav-inner{
    justify-content: space-between;
  }

  .nav-hamburger{
    display: block;
  }

  .nav-links{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10,10,25,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--stroke);
    border-radius: var(--radius);
    padding: 12px;
    gap: 6px;

    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  /* Open state */
  .nav-toggle:checked ~ .nav-links{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Hamburger → X animation */
  .nav-toggle:checked + .nav-hamburger span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-hamburger span:nth-child(2){
    opacity: 0;
  }

  .nav-toggle:checked + .nav-hamburger span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Mobile spacing */
@media (max-width: 520px){
  .hero{ padding: 28px 18px; }
  .nav-inner{ gap:6px; }
  .nav a{ padding: 9px 12px; }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }
}