/* ═══════════════════════════════════════════
   NIHASAH — Shared Styles
   All pages link to this file. Page-specific
   styles go in inline <style> tags.
   ═══════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
  --black-deep: #080610;
  --black-card: #0f0b1a;
  --black-surface: #160f24;
  --gold: #e8b4b8;
  --gold-light: #f2cfd2;
  --gold-dim: #c9969a;
  --pink: #ff5fa0;
  --pink-soft: #ff7eb8;
  --pink-hot: #ff2d87;
  --purple: #b56dff;
  --purple-dim: #8a3dcf;
  --purple-deep: #2d1b4e;
  --rose: #e8b4b8;
  --rose-gold: #d4a0a6;
  --white: #f5eef8;
  --white-muted: #c4b3d4;
  --glass-bg: rgba(15, 11, 26, 0.7);
  --glass-border: rgba(232, 180, 184, 0.18);
  --glow-pink: rgba(255, 45, 135, 0.3);
  --glow-purple: rgba(181, 109, 255, 0.25);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--black-deep);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; display: block; }
::selection { background: var(--pink-hot); color: #fff; }

/* ─── Utilities ─── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 1.25rem; color: var(--white);
  position: relative; display: inline-block;
}
.section-title::after {
  content: ''; display: block; width: 0; height: 2px; margin-top: 0.6rem;
  background: linear-gradient(90deg, var(--pink-hot), var(--rose), var(--purple));
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible .section-title::after,
.section-title:only-child::after { width: 80px; }
.section-subtitle {
  font-size: 1.05rem; color: var(--white-muted); max-width: 600px; margin-bottom: 3rem;
}
.gold-text {
  background: linear-gradient(90deg, var(--pink-hot) 0%, var(--rose) 20%, #fff 40%, var(--rose) 60%, var(--purple) 80%, var(--pink-hot) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.glow-word {
  color: var(--pink-soft);
  text-shadow: 0 0 8px rgba(255, 45, 135, 0.5), 0 0 25px rgba(255, 45, 135, 0.2);
}
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-hot), var(--purple), var(--pink-hot), transparent);
  opacity: 0.25;
}

/* ─── Navigation ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0; transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.08em; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--white-muted); transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
    flex-direction: column; justify-content: center;
    background: rgba(10, 10, 15, 0.97); backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); gap: 2.5rem; padding: 2rem;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
}

/* ─── Page Hero (compact, for sub-pages) ─── */
.page-hero { position: relative; padding: 10rem 0 5rem; text-align: center; overflow: hidden; }
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 45, 135, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(181, 109, 255, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(232, 180, 184, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(45, 27, 78, 0.6) 0%, transparent 70%),
    var(--black-deep);
  animation: heroBgShift 12s ease-in-out infinite alternate;
}
@keyframes heroBgShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  50% { filter: hue-rotate(8deg) brightness(1.06); }
  100% { filter: hue-rotate(-5deg) brightness(0.98); }
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-crown {
  font-size: 2.5rem; margin-bottom: 1rem; display: inline-block;
  animation: crownFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(255, 45, 135, 0.5)) drop-shadow(0 0 50px rgba(181, 109, 255, 0.3));
}
@keyframes crownFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.page-hero-title {
  font-family: var(--font-heading); font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 900;
  letter-spacing: 0.1em; line-height: 1.1; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--pink-hot) 0%, var(--rose) 30%, var(--pink-soft) 50%, var(--purple) 80%, var(--pink-hot) 100%);
  background-size: 200% 200%; animation: titleShimmer 5s ease-in-out infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255, 45, 135, 0.25));
}
@keyframes titleShimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.page-hero-subtitle {
  font-family: var(--font-heading); font-style: italic; font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--white-muted); max-width: 550px; margin: 0 auto; letter-spacing: 0.02em;
}
.page-hero-content > * { animation: fadeInUp 0.8s ease forwards; opacity: 0; }
.page-hero-crown { animation-delay: 0.1s; }
.page-hero-title { animation-delay: 0.25s; }
.page-hero-subtitle { animation-delay: 0.45s; }
.page-hero-sync {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  color: var(--pink-soft); letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 0.75rem; opacity: 0; animation: fadeInUp 0.8s ease 0.6s forwards;
}
.page-hero-sync::before { content: "\25CF"; margin-right: 0.4em; color: var(--pink-hot); font-size: 0.5em; vertical-align: middle; }

/* ─── Buttons ─── */
.btn {
  display: inline-block; padding: 0.9rem 2.5rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all var(--transition);
  position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--pink-hot), var(--purple), var(--pink-hot));
  background-size: 200% 100%; color: #fff;
  box-shadow: 0 4px 25px var(--glow-pink), 0 0 60px rgba(181, 109, 255, 0.15);
  border: 1px solid rgba(255, 126, 184, 0.3);
  animation: btnPulse 2.5s ease-in-out infinite;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--glow-pink), 0 0 80px rgba(181, 109, 255, 0.25);
  background-position: 100% 0; color: #fff; animation: none;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 25px var(--glow-pink), 0 0 60px rgba(181, 109, 255, 0.15); }
  50% { box-shadow: 0 4px 35px rgba(255, 45, 135, 0.5), 0 0 80px rgba(181, 109, 255, 0.3), 0 0 120px rgba(255, 45, 135, 0.15); }
}
.btn-sm {
  display: inline-block; padding: 0.65rem 1.8rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid var(--pink); color: var(--pink); background: transparent;
  transition: all var(--transition); text-decoration: none;
}
.btn-sm:hover {
  background: var(--pink); color: var(--black-deep);
  transform: translateY(-2px); box-shadow: 0 4px 25px var(--glow-pink);
}
.btn-outline {
  display: inline-block; padding: 0.75rem 2rem;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--glass-border); color: var(--white-muted); background: transparent;
  transition: all var(--transition); text-decoration: none; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--pink); color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 135, 0.1);
}

/* ─── Section CTAs ─── */
.section-cta { text-align: center; margin-top: 3rem; padding-top: 2rem; }
.section-cta p {
  font-family: var(--font-heading); font-style: italic; font-size: 1.05rem;
  color: var(--white-muted); margin-bottom: 1.25rem;
}

/* ─── Voice Player ─── */
.voice-player {
  display: flex; align-items: center; gap: 1rem; max-width: 440px;
  margin: 0 auto; padding: 1rem 1.5rem;
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 60px; transition: all var(--transition);
}
.voice-player:hover {
  border-color: rgba(255, 45, 135, 0.3); box-shadow: 0 0 30px rgba(255, 45, 135, 0.08);
}
.voice-play-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple));
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--transition); box-shadow: 0 0 20px var(--glow-pink);
}
.voice-play-btn:hover { transform: scale(1.08); box-shadow: 0 0 30px var(--glow-pink); }
.voice-play-icon { display: inline-block; line-height: 1; margin-left: 2px; }
.voice-progress-wrap {
  flex: 1; height: 40px; position: relative; cursor: pointer;
  display: flex; align-items: center; overflow: hidden; border-radius: 4px;
}
.voice-progress-bar {
  position: absolute; left: 0; top: 0; height: 100%; width: 0%;
  background: linear-gradient(90deg, rgba(255, 45, 135, 0.15), rgba(181, 109, 255, 0.15));
  border-radius: 4px; transition: width 0.1s linear; z-index: 0;
}
.voice-waveform {
  display: flex; align-items: center; gap: 3px; width: 100%; height: 100%;
  padding: 0 4px; position: relative; z-index: 1;
}
.voice-waveform span {
  flex: 1; background: var(--white-muted); border-radius: 2px; opacity: 0.25;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.voice-player.playing .voice-waveform span {
  animation: waveAnim 0.8s ease-in-out infinite alternate;
  background: var(--pink); opacity: 0.6;
}
.voice-waveform span:nth-child(1)  { height: 30%; } .voice-waveform span:nth-child(2)  { height: 50%; }
.voice-waveform span:nth-child(3)  { height: 70%; } .voice-waveform span:nth-child(4)  { height: 45%; }
.voice-waveform span:nth-child(5)  { height: 85%; } .voice-waveform span:nth-child(6)  { height: 60%; }
.voice-waveform span:nth-child(7)  { height: 95%; } .voice-waveform span:nth-child(8)  { height: 50%; }
.voice-waveform span:nth-child(9)  { height: 75%; } .voice-waveform span:nth-child(10) { height: 40%; }
.voice-waveform span:nth-child(11) { height: 90%; } .voice-waveform span:nth-child(12) { height: 55%; }
.voice-waveform span:nth-child(13) { height: 70%; } .voice-waveform span:nth-child(14) { height: 85%; }
.voice-waveform span:nth-child(15) { height: 45%; } .voice-waveform span:nth-child(16) { height: 65%; }
.voice-waveform span:nth-child(17) { height: 80%; } .voice-waveform span:nth-child(18) { height: 35%; }
.voice-waveform span:nth-child(19) { height: 60%; } .voice-waveform span:nth-child(20) { height: 90%; }
.voice-waveform span:nth-child(21) { height: 50%; } .voice-waveform span:nth-child(22) { height: 75%; }
.voice-waveform span:nth-child(23) { height: 40%; } .voice-waveform span:nth-child(24) { height: 85%; }
.voice-waveform span:nth-child(25) { height: 55%; } .voice-waveform span:nth-child(26) { height: 70%; }
.voice-waveform span:nth-child(27) { height: 45%; } .voice-waveform span:nth-child(28) { height: 80%; }
.voice-waveform span:nth-child(29) { height: 60%; } .voice-waveform span:nth-child(30) { height: 35%; }
@keyframes waveAnim { 0% { transform: scaleY(0.6); } 100% { transform: scaleY(1.2); } }
.voice-waveform span:nth-child(odd) { animation-delay: 0.1s; }
.voice-waveform span:nth-child(3n) { animation-delay: 0.2s; }
.voice-waveform span:nth-child(5n) { animation-delay: 0.05s; }
.voice-time {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  color: var(--white-muted); min-width: 32px; text-align: right; flex-shrink: 0;
}

/* ─── Lightbox ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(10, 10, 15, 0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-content { max-width: 90vw; max-height: 85vh; position: relative; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  color: var(--gold); font-size: 2rem; cursor: pointer; z-index: 2001;
  transition: color var(--transition); line-height: 1;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(15, 11, 26, 0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border); color: var(--gold); font-size: 1.5rem;
  width: 48px; height: 48px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2002; transition: all var(--transition); border-radius: 50%; line-height: 1;
}
.lightbox-nav:hover { border-color: var(--pink-hot); color: var(--pink); box-shadow: 0 0 20px var(--glow-pink); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: var(--white-muted); font-size: 0.85rem; font-family: var(--font-body);
  letter-spacing: 0.1em; z-index: 2002;
}

/* ─── Gallery Items (shared) ─── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.gallery-item {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--black-card), var(--black-surface));
  border: 1px solid var(--glass-border); position: relative; overflow: hidden;
  cursor: pointer; transition: all var(--transition);
}
.gallery-item:hover {
  border-color: var(--pink-hot); transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 45, 135, 0.15);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 45, 135, 0.12) 45%,
    rgba(255, 126, 184, 0.2) 50%, rgba(255, 45, 135, 0.12) 55%, transparent 60%);
  transform: translateX(-100%); transition: none; pointer-events: none; z-index: 2;
}
.gallery-item:hover::after { transform: translateX(100%); transition: transform 0.8s ease; }
.gallery-note {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem; color: var(--white-muted);
}
/* Locked gallery items */
.gallery-locked { cursor: default; }
.gallery-locked img { filter: blur(12px) brightness(0.6); transition: filter 0.3s ease; }
.gallery-locked:hover img { filter: blur(8px) brightness(0.7); }
.gallery-locked .gallery-lock-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(8, 6, 16, 0.3);
}
.gallery-lock-overlay span {
  font-size: 1.5rem; margin-bottom: 0.5rem;
}
.gallery-lock-overlay small {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--pink); text-shadow: 0 0 10px rgba(255, 45, 135, 0.5);
}
/* Unlock tiers via data attribute on <html> */
[data-unlock-tier="2"] .gallery-locked.tier-2 img,
[data-unlock-tier="3"] .gallery-locked.tier-2 img,
[data-unlock-tier="3"] .gallery-locked.tier-3 img { filter: none; }
[data-unlock-tier="2"] .gallery-locked.tier-2 .gallery-lock-overlay,
[data-unlock-tier="3"] .gallery-locked.tier-2 .gallery-lock-overlay,
[data-unlock-tier="3"] .gallery-locked.tier-3 .gallery-lock-overlay { display: none; }
[data-unlock-tier="2"] .gallery-locked.tier-2,
[data-unlock-tier="3"] .gallery-locked.tier-2,
[data-unlock-tier="3"] .gallery-locked.tier-3 { cursor: pointer; }

/* ─── Form Components ─── */
.application-form {
  max-width: 680px; margin: 0 auto;
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); padding: 3rem 2.5rem; position: relative;
}
.application-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple), var(--pink));
}
.form-group { margin-bottom: 1.75rem; }
.form-label {
  display: block; font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: 0.02em;
}
.form-label span { color: var(--pink-hot); margin-left: 2px; }
.form-input, .form-textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--white); background: rgba(8, 6, 16, 0.6); border: 1px solid var(--glass-border);
  outline: none; transition: all var(--transition); -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--pink-hot);
  box-shadow: 0 0 20px rgba(255, 45, 135, 0.12), 0 0 40px rgba(255, 45, 135, 0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(196, 179, 212, 0.4); }
.form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
.range-wrapper { position: relative; }
.range-value {
  display: inline-block; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--pink); margin-bottom: 0.75rem; min-width: 80px;
}
.form-range {
  width: 100%; height: 6px; background: var(--black-surface);
  border: 1px solid var(--glass-border); border-radius: 3px; outline: none;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 2px solid rgba(255, 126, 184, 0.5); box-shadow: 0 0 15px var(--glow-pink);
  cursor: pointer; transition: all var(--transition);
}
.form-range::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 25px var(--glow-pink); }
.form-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 2px solid rgba(255, 126, 184, 0.5); box-shadow: 0 0 15px var(--glow-pink); cursor: pointer;
}
.range-labels {
  display: flex; justify-content: space-between; margin-top: 0.5rem;
  font-size: 0.72rem; color: var(--white-muted); opacity: 0.6;
}
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.form-check input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  -webkit-appearance: none; appearance: none; background: rgba(8, 6, 16, 0.6);
  border: 1px solid var(--glass-border); cursor: pointer; position: relative;
  transition: all var(--transition);
}
.form-check input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold); box-shadow: 0 0 12px var(--glow-pink);
}
.form-check input[type="checkbox"]:checked::after {
  content: '\2713'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); color: #fff; font-size: 0.75rem; font-weight: 700;
}
.form-check-label { font-size: 0.88rem; color: var(--white-muted); line-height: 1.5; cursor: pointer; }
.form-note {
  text-align: center; margin-top: 1.25rem; font-family: var(--font-heading);
  font-style: italic; font-size: 0.88rem; color: var(--white-muted); opacity: 0.7;
}
.honeypot { position: absolute; left: -9999px; }
@media (max-width: 768px) { .application-form { padding: 2rem 1.5rem; } }

/* ─── Tribute Box ─── */
.tribute-box {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); padding: 2.5rem; text-align: center;
  position: relative; transition: all var(--transition);
}
@property --border-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.tribute-box:hover {
  border-color: transparent;
  background-image: linear-gradient(var(--glass-bg), var(--glass-bg)),
    conic-gradient(from var(--border-angle), var(--pink-hot), var(--gold), var(--purple), var(--pink-hot));
  background-origin: border-box; background-clip: padding-box, border-box;
  animation: borderSpin 3s linear infinite;
  box-shadow: 0 0 40px rgba(255, 45, 135, 0.15), 0 0 80px rgba(181, 109, 255, 0.08);
}
@keyframes borderSpin { to { --border-angle: 360deg; } }
.tribute-title {
  font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem; color: var(--pink);
}
.tribute-subtitle { font-size: 0.9rem; color: var(--white-muted); margin-bottom: 2rem; }
.tribute-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.tribute-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.85rem 1.5rem; font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03); color: var(--white);
  cursor: pointer; transition: all var(--transition); position: relative; overflow: hidden;
}
.tribute-btn:hover {
  border-color: var(--pink); background: rgba(255, 45, 135, 0.08);
  color: var(--pink); box-shadow: 0 0 20px rgba(255, 45, 135, 0.1);
}
.tribute-btn::before {
  content: '$ $ $ $ $ $ $ $ $ $'; position: absolute; top: -100%; left: 0; right: 0;
  font-size: 0.7rem; letter-spacing: 0.5em; color: var(--pink-hot);
  opacity: 0; transition: none; pointer-events: none; white-space: nowrap; text-align: center;
}
.tribute-btn:hover::before { animation: moneyRain 0.8s ease-out forwards; }
@keyframes moneyRain { 0% { top: -100%; opacity: 0.8; } 100% { top: 150%; opacity: 0; } }
.tribute-btn-icon { font-size: 1.1rem; }

/* ─── Footer ─── */
.footer { padding: 3rem 0; border-top: 1px solid rgba(255, 45, 135, 0.08); text-align: center; }
.footer-nav { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-muted); transition: color var(--transition); position: relative;
}
.footer-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--pink); transition: width var(--transition);
}
.footer-nav a:hover::after { width: 100%; }
.footer-nav a:hover { color: var(--pink); }
.footer-tagline {
  font-family: var(--font-heading); font-style: italic; font-size: 1.1rem;
  color: var(--white-muted); margin-bottom: 1rem;
}
.footer-tagline span { color: var(--pink-hot); }
.footer-copy { font-size: 0.75rem; color: rgba(184, 169, 204, 0.4); letter-spacing: 0.05em; }
.footer-ornament {
  margin: 1.25rem auto 0; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), var(--pink), var(--rose-gold), transparent);
}

/* ─── Back to Top ─── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px;
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); color: var(--pink); font-size: 1.4rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 900; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition); border-radius: 50%;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { border-color: var(--pink); box-shadow: 0 0 25px var(--glow-pink); }

/* ─── Scroll Progress ─── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple), var(--pink));
  z-index: 9998; width: 0%; pointer-events: none;
}

/* ─── Sticky Tribute Button ─── */
.tribute-sticky {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 950;
  display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple)); color: #fff;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255, 126, 184, 0.4); border-radius: 50px;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 25px var(--glow-pink), 0 0 40px rgba(181, 109, 255, 0.15);
  animation: tributePulse 2.5s ease-in-out infinite; transition: all var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.tribute-sticky.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.tribute-sticky:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 40px var(--glow-pink), 0 0 60px rgba(181, 109, 255, 0.3); color: #fff;
}
.tribute-sticky-icon { font-size: 1rem; line-height: 1; }
@keyframes tributePulse {
  0%, 100% { box-shadow: 0 4px 25px var(--glow-pink), 0 0 40px rgba(181, 109, 255, 0.15); }
  50% { box-shadow: 0 4px 30px rgba(255, 45, 135, 0.5), 0 0 60px rgba(181, 109, 255, 0.25); }
}

/* ─── Tribute Notifications ─── */
.tribute-notifications {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 950;
  display: flex; flex-direction: column-reverse; gap: 0.5rem;
  pointer-events: none;
}
.tribute-notif {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-left: 3px solid var(--pink-hot);
  padding: 0.75rem 1.25rem; font-size: 0.8rem; color: var(--white-muted);
  font-family: var(--font-body); letter-spacing: 0.02em;
  transform: translateX(-100%); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  max-width: 320px; pointer-events: auto;
}
.tribute-notif.visible { transform: translateX(0); opacity: 1; }

/* ─── Visit Banner ─── */
.visit-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  background: linear-gradient(90deg, rgba(255, 45, 135, 0.12), rgba(181, 109, 255, 0.12)), var(--black-deep);
  border-bottom: 1px solid rgba(255, 45, 135, 0.15);
  padding: 0.5rem 1rem; text-align: center;
  font-family: var(--font-heading); font-style: italic; font-size: 0.85rem;
  color: var(--pink-soft); letter-spacing: 0.02em;
  transform: translateY(-100%); transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.visit-banner.visible { transform: translateY(0); }

/* ─── Floating Symbols ─── */
.floating-symbols { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.floating-symbol {
  position: absolute; font-size: 1rem; opacity: 0;
  animation: symbolFloat linear infinite; filter: blur(0.5px);
}
@keyframes symbolFloat {
  0% { opacity: 0; transform: translateY(110vh) rotate(0deg) scale(0.5); }
  10% { opacity: 0.15; } 90% { opacity: 0.08; }
  100% { opacity: 0; transform: translateY(-10vh) rotate(360deg) scale(1); }
}

/* ─── Sparkle Canvas ─── */
.sparkle-canvas { position: fixed; inset: 0; z-index: 9980; pointer-events: none; }

/* ─── Custom Cursor (desktop) ─── */
@media (pointer: fine) {
  html {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cline x1='10' y1='2' x2='10' y2='18' stroke='%23ff7eb8' stroke-width='1' opacity='0.8'/%3E%3Cline x1='2' y1='10' x2='18' y2='10' stroke='%23ff7eb8' stroke-width='1' opacity='0.8'/%3E%3Ccircle cx='10' cy='10' r='3' fill='none' stroke='%23ff5fa0' stroke-width='0.8' opacity='0.6'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23ff2d87' opacity='0.9'/%3E%3C/svg%3E") 10 10, default;
  }
  a, button, [role="button"], .gallery-item, .service-card, .tribute-btn {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Cpath d='M11 19l-1.3-1.2C5 13.7 2 11 2 7.5 2 4.4 4.4 2 7.5 2c1.7 0 3.4.8 4.5 2.1C13.1 2.8 14.8 2 16.5 2 19.6 2 22 4.4 22 7.5c0 3.5-3 6.2-7.7 10.3L11 19z' fill='%23ff2d87' opacity='0.85'/%3E%3C/svg%3E") 11 11, pointer;
  }
}

/* ─── Grain / Noise Overlay ─── */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 256px 256px;
}

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Blog Components ─── */
.blog-feed {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 0 1.5rem;
}

.blog-post {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.blog-post:hover {
  border-color: rgba(232, 180, 184, 0.35);
  box-shadow: 0 0 30px rgba(255, 45, 135, 0.08), 0 0 60px rgba(181, 109, 255, 0.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 500;
}

.blog-read-time {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  opacity: 0.6;
  font-family: var(--font-heading);
  font-style: italic;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: 700;
}

.blog-body {
  font-size: 1rem;
  color: var(--white-muted);
  line-height: 1.8;
}

.blog-body p {
  margin-bottom: 1rem;
}

.blog-body p:last-child {
  margin-bottom: 0;
}

.blog-cta {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
}

.blog-cta-text {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--white-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* Blog Reactions */
.blog-reactions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
}

.blog-reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  -webkit-user-select: none;
  user-select: none;
}

.blog-reaction-btn:hover {
  border-color: rgba(255, 45, 135, 0.3);
  color: var(--pink-soft);
  box-shadow: 0 0 15px rgba(255, 45, 135, 0.08);
}

.blog-reaction-btn.active {
  background: rgba(255, 45, 135, 0.12);
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 135, 0.15);
}

.blog-reaction-count {
  font-size: 0.7rem;
  opacity: 0.7;
  min-width: 1.2em;
  text-align: center;
}

/* Blog Locked Post */
.blog-post-locked .blog-body {
  filter: blur(8px);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  position: relative;
}

.blog-post-locked .blog-cta,
.blog-post-locked .blog-reactions {
  display: none;
}

.blog-lock-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 1rem;
}

.blog-lock-overlay span {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-lock-overlay small {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255, 45, 135, 0.5);
}

.blog-lock-overlay p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

/* Unlocked state — remove blur when tier 2+ */
[data-unlock-tier="2"] .blog-post-locked.tier-2 .blog-body,
[data-unlock-tier="3"] .blog-post-locked.tier-2 .blog-body,
[data-unlock-tier="3"] .blog-post-locked.tier-3 .blog-body {
  filter: none;
  -webkit-user-select: auto;
  user-select: auto;
  pointer-events: auto;
}
[data-unlock-tier="2"] .blog-post-locked.tier-2 .blog-lock-overlay,
[data-unlock-tier="3"] .blog-post-locked.tier-2 .blog-lock-overlay,
[data-unlock-tier="3"] .blog-post-locked.tier-3 .blog-lock-overlay {
  display: none;
}
[data-unlock-tier="2"] .blog-post-locked.tier-2 .blog-cta,
[data-unlock-tier="2"] .blog-post-locked.tier-2 .blog-reactions,
[data-unlock-tier="3"] .blog-post-locked.tier-2 .blog-cta,
[data-unlock-tier="3"] .blog-post-locked.tier-2 .blog-reactions,
[data-unlock-tier="3"] .blog-post-locked.tier-3 .blog-cta,
[data-unlock-tier="3"] .blog-post-locked.tier-3 .blog-reactions {
  display: flex;
}
[data-unlock-tier="2"] .blog-post-locked.tier-2 .blog-cta,
[data-unlock-tier="3"] .blog-post-locked.tier-2 .blog-cta,
[data-unlock-tier="3"] .blog-post-locked.tier-3 .blog-cta {
  display: block;
}

/* Blog Reading Commentary */
.blog-commentary {
  text-align: center;
  padding: 1.5rem 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--pink-soft);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-commentary.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .blog-post {
    padding: 1.75rem 1.25rem;
  }
  .blog-title {
    font-size: 1.3rem;
  }
  .blog-feed {
    gap: 2rem;
  }
  .blog-reactions {
    gap: 0.4rem;
  }
  .blog-reaction-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}

/* ─── Online Status Indicator ─── */
.status-indicator {
  display: none; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white-muted); margin-left: 0.5rem;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2); transition: all 0.3s ease;
}
.status-dot.online {
  background: #00ff88;
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.2);
  animation: statusPulse 2s ease-in-out infinite;
}
.status-link {
  color: #00ff88; text-decoration: none; transition: color 0.2s ease;
}
.status-link:hover { color: #fff; }
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.2); }
  50% { box-shadow: 0 0 12px rgba(0, 255, 136, 0.8), 0 0 30px rgba(0, 255, 136, 0.4); }
}

/* ─── Tribute Leaderboard ─── */
.leaderboard { padding: 5rem 0; }
.leaderboard-list {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.leaderboard-entry {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); transition: all var(--transition);
}
.leaderboard-entry:hover {
  border-color: rgba(255, 45, 135, 0.25);
  box-shadow: 0 0 20px rgba(255, 45, 135, 0.08);
}
.leaderboard-entry:first-child {
  border-color: var(--pink-hot);
  background: linear-gradient(135deg, rgba(255, 45, 135, 0.08), var(--glass-bg));
  box-shadow: 0 0 25px var(--glow-pink);
}
.leaderboard-rank {
  font-family: var(--font-heading); font-size: 1.3rem; font-weight: 900;
  color: var(--pink); min-width: 2rem; text-align: center;
}
.leaderboard-entry:first-child .leaderboard-rank { color: var(--gold); }
.leaderboard-name {
  flex: 1; font-family: var(--font-heading); font-size: 1rem;
  font-weight: 700; color: var(--white);
}
.leaderboard-amount {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  color: var(--pink); text-shadow: 0 0 10px rgba(255, 45, 135, 0.3);
}
.leaderboard-total {
  text-align: center; margin-top: 2rem;
  font-family: var(--font-heading); font-size: 0.9rem; color: var(--white-muted);
}
.leaderboard-total strong {
  color: var(--pink); font-size: 1.1rem;
}
.leaderboard-empty {
  text-align: center; padding: 3rem;
  font-family: var(--font-heading); font-style: italic;
  color: var(--white-muted); font-size: 1rem;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .floating-symbols, .sparkle-canvas { display: none; }
}

/* ─── Mobile Adjustments ─── */
@media (max-width: 768px) {
  .back-to-top { bottom: 1.2rem; right: 1rem; width: 40px; height: 40px; font-size: 1.1rem; }
  .tribute-sticky {
    bottom: 1.2rem; right: 50%; transform: translateX(50%) translateY(10px);
    font-size: 0.72rem; padding: 0.6rem 1.2rem;
  }
  .tribute-sticky.visible { transform: translateX(50%) translateY(0); }
  .tribute-sticky:hover { transform: translateX(50%) translateY(-2px); }
  .tribute-notifications { left: 0.75rem; bottom: 4.5rem; }
  .tribute-notif { max-width: 260px; font-size: 0.75rem; padding: 0.6rem 1rem; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
