:root{
  --bg:#050106;
  --ink:#fff8fb;
  --muted:#f0b8c7;
  --red:#e11845;
  --red-hot:#ff315f;
  --pink:#ff62c7;
  --violet:#9c5cff;
  --gold:#ffd166;
  --cyan:#6df7ff;
  --panel:rgba(23,5,13,.7);
  --panel-strong:rgba(53,8,22,.82);
  --line:rgba(255,248,251,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:var(--ink);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    linear-gradient(180deg,rgba(5,1,6,.18),#050106 54%,#070107 100%),
    url("/assets/planetvampires-hero-bg-v2.png") top center/cover no-repeat fixed;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(circle at 12% 76%,rgba(109,247,255,.2),transparent 20rem),
    radial-gradient(circle at 70% 18%,rgba(255,98,199,.25),transparent 23rem),
    linear-gradient(90deg,rgba(5,1,6,.68),rgba(5,1,6,.18),rgba(5,1,6,.56));
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:repeating-linear-gradient(135deg,rgba(255,255,255,.055) 0 1px,transparent 1px 52px);
  opacity:.42;
}
a{color:inherit;text-decoration:none}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(255,255,255,.12);
  background:linear-gradient(90deg,rgba(5,1,6,.86),rgba(45,4,21,.72),rgba(5,1,6,.86));
  backdrop-filter:blur(20px);
}
.nav{
  width:min(1140px,calc(100% - 36px));
  min-height:78px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:15px;
  background:conic-gradient(from 210deg,var(--red-hot),var(--pink),var(--violet),var(--red),var(--red-hot));
  box-shadow:0 0 32px rgba(255,49,95,.42);
  font-weight:950;
}
.brand span:last-child{display:grid}
.brand strong{font-size:17px}
.brand small{color:var(--muted);font-size:11px;text-transform:uppercase}
.menu{display:flex;gap:8px;flex-wrap:wrap}
.menu a{
  padding:10px 14px;
  border-radius:999px;
  color:#ffdce7;
  font-weight:900;
}
.menu a:hover{background:rgba(255,255,255,.1);color:#fff}
main{position:relative}
.hero{
  width:min(1140px,calc(100% - 36px));
  min-height:calc(100vh - 78px);
  margin:0 auto;
  padding:96px 0 76px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 400px;
  align-items:center;
  gap:58px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--gold);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}
h1,h2,h3,p{letter-spacing:0}
h1{
  max-width:830px;
  margin:0;
  font-size:clamp(64px,10vw,136px);
  line-height:.86;
  font-weight:950;
  text-shadow:0 0 36px rgba(255,49,95,.2);
}
h2{
  margin:0;
  font-size:clamp(36px,5.4vw,72px);
  line-height:.95;
  font-weight:950;
}
h3{margin:0;font-size:29px}
.lead{
  max-width:620px;
  color:#ffd7e1;
  font-size:21px;
  line-height:1.62;
}
.hero-actions,.apply-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.button{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 23px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:linear-gradient(135deg,var(--red-hot),var(--pink));
  color:#fff;
  box-shadow:0 18px 52px rgba(255,49,95,.32);
  font-weight:950;
}
.button.ghost{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.22);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}
.club-panel{
  padding:18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:32px;
  background:linear-gradient(180deg,rgba(65,7,27,.78),rgba(11,2,8,.76));
  box-shadow:0 32px 110px rgba(0,0,0,.48),0 0 80px rgba(255,49,95,.16);
  display:grid;
  gap:12px;
}
.club-panel div{
  min-height:104px;
  padding:20px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:20px;
  background:
    linear-gradient(135deg,rgba(255,49,95,.18),rgba(156,92,255,.08)),
    rgba(255,255,255,.035);
}
.club-panel small{display:block;color:#ffd1df;font-weight:850}
.club-panel strong{display:block;margin-top:10px;font-size:39px}
.intro,.preview-grid,.apply,footer{
  width:min(1140px,calc(100% - 36px));
  margin:0 auto;
}
.intro{
  padding:40px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,49,95,.18),rgba(156,92,255,.12),rgba(7,1,7,.72));
  box-shadow:0 28px 80px rgba(0,0,0,.36);
}
.intro p:not(.eyebrow),.preview-grid p,.apply p{color:var(--muted);line-height:1.7}
.preview-grid{
  padding:34px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.preview-grid article{
  position:relative;
  min-height:220px;
  overflow:hidden;
  padding:25px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:26px;
  background:var(--panel);
}
.preview-grid article::before{
  content:"";
  position:absolute;
  inset:-60% -25% auto auto;
  width:220px;
  height:220px;
  border-radius:999px;
  filter:blur(4px);
  opacity:.45;
}
.story-card::before{background:var(--red-hot)}
.lead-card::before{background:var(--violet)}
.outfit-card::before{background:var(--cyan)}
.preview-grid span{
  position:relative;
  display:block;
  margin-bottom:44px;
  color:var(--gold);
  font-weight:950;
}
.preview-grid h3,.preview-grid p{position:relative}
.apply{
  margin-bottom:78px;
  padding:40px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(255,49,95,.24),rgba(255,98,199,.12),rgba(255,209,102,.08)),
    rgba(15,2,8,.75);
  box-shadow:0 30px 100px rgba(0,0,0,.42);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
footer{
  padding:34px 0;
  border-top:1px solid rgba(255,255,255,.15);
  display:flex;
  justify-content:space-between;
  color:var(--muted);
}
@media(max-width:860px){
  body{background-attachment:scroll}
  .nav{align-items:flex-start;flex-direction:column;padding:16px 0}
  .hero{min-height:auto;padding:56px 0;grid-template-columns:1fr}
  h1{font-size:58px}
  .preview-grid{grid-template-columns:1fr}
  .apply{align-items:flex-start;flex-direction:column}
}

.page-main{
  width:min(1140px,calc(100% - 36px));
  margin:0 auto;
  padding:92px 0 76px;
}
.page-hero{
  min-height:420px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.page-hero p:not(.eyebrow){
  max-width:720px;
  color:#ffd7e1;
  font-size:21px;
  line-height:1.65;
}
.content-panel,.profile-grid article,.feature-grid article{
  border:1px solid rgba(255,255,255,.17);
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,49,95,.2),rgba(156,92,255,.1),rgba(8,1,8,.76));
  box-shadow:0 30px 100px rgba(0,0,0,.38);
}
.content-panel{padding:40px}
.content-panel p,.profile-grid p,.feature-grid p{color:var(--muted);line-height:1.7}
.profile-grid,.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.feature-grid{grid-template-columns:repeat(2,1fr)}
.profile-grid article,.feature-grid article{padding:25px}
.profile-image,.wide-placeholder{
  min-height:260px;
  margin-bottom:20px;
  display:grid;
  place-items:center;
  border:1px dashed rgba(255,255,255,.28);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,49,95,.2),rgba(109,247,255,.1));
  color:#ffd7e1;
  font-weight:900;
}
.feature-grid span{
  display:block;
  color:var(--gold);
  font-weight:950;
  margin-bottom:12px;
}
@media(max-width:860px){
  .profile-grid,.feature-grid{grid-template-columns:1fr}
  .page-main{padding-top:56px}
}


.club-note{
  max-width:620px;
  margin-top:22px;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:linear-gradient(135deg,rgba(255,49,95,.18),rgba(255,98,199,.08),rgba(5,1,6,.62));
  box-shadow:0 18px 54px rgba(0,0,0,.28);
}
.club-note strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
  font-size:18px;
  font-weight:950;
}
.club-note p{
  margin:0;
  color:#ffd7e1;
  line-height:1.55;
}
.footer-links{
  display:flex;
  justify-content:flex-end;
  gap:18px;
  flex-wrap:wrap;
}
.footer-links a{
  color:#ffd7e1;
  font-weight:850;
}
.footer-links a:hover{color:#fff}
@media(max-width:700px){
  footer{flex-direction:column;gap:18px}
  .footer-links{justify-content:flex-start}
}
