/* prplKite – Stylesheet */
/* Fonts: Unbounded (headers), Space Grotesk (VELOUR), Manrope (body) */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;600;800&family=Manrope:wght@300;400;500;600&family=Space+Grotesk:wght@700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --purple:       #6B46C1;
  --purple-dark:  #553C9A;
  --purple-light: #9F7AEA;
  --accent:       #B794F4;
  --bg:           #1A1A1A;
  --card:         #252525;
  --border:       rgba(107,70,193,0.25);
  --text:         #E5E5E5;
  --muted:        rgba(229,229,229,0.6);
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 54px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

nav a:hover, nav a.active { color: var(--purple-light); }

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
}

nav a.locker-link {
  color: var(--purple-light);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 4px;
}

nav a.locker-link:hover {
  background: rgba(107,70,193,0.18);
  border-color: var(--purple-light);
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(107,70,193,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content h1 .name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple-light), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 8s ease infinite;
}

.hero-content h1 .sub-name {
  display: block;
  font-size: 0.4em;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--text);
  opacity: 0.55;
  margin-top: 0.35em;
  -webkit-text-fill-color: var(--text);
}

@keyframes gradShift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-number {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,70,193,0.4);
}

.btn-secondary {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px 32px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  transform: translateY(-2px);
}

/* ── SECTION COMMON ── */
section { padding: 6rem 0; position: relative; z-index: 1; }
section.alt { background: rgba(255,255,255,0.02); }

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.4rem;
}

.section-title span { color: var(--purple-light); }

.divider {
  width: 50px;
  height: 2px;
  background: var(--purple);
  margin: 0.9rem 0 2.5rem;
}

.divider.center { margin: 0.9rem auto 2.5rem; }

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 1rem;
}

.section-sub.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ── CREDENTIAL CARDS ── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}

.cred-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: 6px;
  padding: 1.6rem;
  transition: all 0.3s;
}

.cred-card:hover {
  border-left-color: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(107,70,193,0.2);
}

.cred-card h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  margin-bottom: 0.45rem;
}

.cred-card p { font-size: 0.88rem; color: var(--muted); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(107,70,193,0.2);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; }

.service-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.service-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
}

.service-price a { color: var(--purple-light); text-decoration: none; }

/* ── SOUNDCLOUD ── */
.soundcloud-wrapper {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #111;
  max-width: 960px;
  margin: 0 auto;
}

.soundcloud-attribution {
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
  padding: 6px 12px;
  background: #111;
  border-top: 1px solid #222;
}

.soundcloud-attribution a { color: #cccccc; text-decoration: none; }

.email-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.93rem;
  color: var(--muted);
}

.email-cta a { color: var(--purple-light); text-decoration: none; font-weight: 600; }
.email-cta a:hover { color: var(--accent); }

/* ── ABOUT ── */
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid var(--border);
}

.about-text h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.about-text h2 span { color: var(--purple-light); }

.about-text p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  line-height: 1.85;
}

.about-text p.tribe { color: var(--purple-light); font-weight: 600; font-style: italic; opacity: 1; }

/* ── PACK CARDS (LOCKER ROOM) ── */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1.4rem;
}

.pack-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.pack-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(107,70,193,0.25);
}

.pack-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }

.pack-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}

.pack-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.pack-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-light);
}

.label-tag {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.7rem;
}

/* ── CTA BLOCK ── */
.cta-block {
  text-align: center;
  padding: 5rem 2rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(107,70,193,0.07) 0%, transparent 100%);
}

.cta-block h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-block h2 span { color: var(--purple-light); }
.cta-block p { color: var(--muted); max-width: 520px; margin: 0 auto 2.5rem; }

/* ── CONTACT CARDS ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1.4rem;
  margin: 2.5rem 0;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.8rem;
  text-align: center;
}

.contact-card .icon { font-size: 1.7rem; margin-bottom: 0.7rem; }

.contact-card h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.contact-card p { font-size: 0.82rem; color: var(--muted); }

.contact-email {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
  margin: 1.5rem 0 2.5rem;
  transition: color 0.3s;
}

.contact-email:hover { color: var(--accent); }

/* ── HERO BACKGROUND LOGO ── */
.hero-bg-logo {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 680px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  filter: grayscale(30%);
}

.hero-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .hero-bg-logo {
    width: 85%;
    right: 50%;
    transform: translate(50%, -50%);
    opacity: 0.05;
  }
}

/* ── LOCKER ROOM HERO ── */
.locker-hero {
  background: radial-gradient(ellipse at 50% 40%, rgba(107,70,193,0.15) 0%, transparent 70%),
              linear-gradient(180deg, #0f0a1a 0%, #1a1a1a 100%);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

/* ── FOOTER ── */
footer {
  background: #111;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}

footer p { font-size: 0.8rem; color: var(--muted); }
footer a { color: var(--purple-light); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 240px; }
}

@media (max-width: 768px) {
  .nav-content { flex-direction: column; gap: 1rem; }
  nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .hero { padding: 4rem 0; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
}
