/* ============================================================
   LEGACY ARCHITECT RVA — PREMIUM DARK THEME
   Futuristic · Holographic · Cinematic
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --bg-deep: #050510;
  --bg-dark: #0a0a1a;
  --bg-card: rgba(15, 15, 35, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(212, 175, 55, 0.3);

  --gold: #D4AF37;
  --gold-light: #E8D48B;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --teal: #00D4AA;
  --teal-dim: rgba(0, 212, 170, 0.15);
  --blue: #4A9EFF;
  --blue-dim: rgba(74, 158, 255, 0.1);
  --purple: #8B5CF6;

  --text-primary: #EDE8DC;
  --text-secondary: rgba(237, 232, 220, 0.65);
  --text-muted: rgba(237, 232, 220, 0.4);

  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --section-gap: clamp(80px, 12vh, 160px);
  --content-width: 1200px;
  --content-narrow: 800px;
  --radius: 16px;
  --radius-sm: 8px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

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

::selection {
  background: var(--gold);
  color: var(--bg-deep);
}

/* --- Utility --- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.narrow { max-width: var(--content-narrow); margin: 0 auto; }

.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Particle Canvas (background) --- */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* --- Page wrapper --- */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(5, 5, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.8rem 0;
}

.nav-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.nav-logo img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--bg-deep) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.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); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse 60% 40% at 30% 60%, rgba(0, 212, 170, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse 50% 50% at 70% 30%, rgba(74, 158, 255, 0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(100px, 15vh, 180px) clamp(20px, 4vw, 60px);
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--gold), var(--text-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s ease infinite;
}

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

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0.8;
}

/* --- CTA Button --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), #c4992e);
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--teal), var(--gold));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.35);
  color: var(--bg-deep);
}

.cta-btn:hover::before { opacity: 1; }

.cta-btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.cta-btn-outline:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

/* ============================================================
   GLASS CARD SYSTEM
   ============================================================ */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.glass-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* ============================================================
   SECTIONS — GENERAL
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-header h2 {
  margin-bottom: 1rem;
}

/* Divider */
.divider {
  height: 1px;
  max-width: 200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* ============================================================
   INTRO / WHAT IS A LIFE MANUAL
   ============================================================ */
.intro-section {
  text-align: center;
}

.intro-section .intro-text {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   7-PILLAR GRID
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  position: relative;
  overflow: hidden;
}

.pillar-card .pillar-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.75rem;
}

.pillar-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.pillar-card .pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================================
   EXPERIENCE A LEGACY — INTERACTIVE JOURNEY
   ============================================================ */
.experience-section {
  position: relative;
  overflow: hidden;
}

.experience-intro {
  text-align: center;
  padding-bottom: 4rem;
}

.experience-acts {
  position: relative;
}

.act {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: clamp(40px, 8vh, 100px) clamp(20px, 4vw, 60px);
}

.act-content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.act-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.act-content h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.act-content p {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.act-tier-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--border-glow);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-top: 1.5rem;
}

/* Act-specific backgrounds */
.act--chaos { background: radial-gradient(ellipse at center, rgba(30, 0, 0, 0.3) 0%, transparent 70%); }
.act--vault { background: radial-gradient(ellipse at center, rgba(0, 30, 20, 0.2) 0%, transparent 70%); }
.act--archive { background: radial-gradient(ellipse at center, rgba(0, 20, 40, 0.2) 0%, transparent 70%); }
.act--legacy { background: radial-gradient(ellipse at center, rgba(40, 30, 0, 0.2) 0%, transparent 70%); }

/* Floating elements in acts */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-el {
  position: absolute;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  will-change: transform, opacity;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  height: 2px;
}

.recommendation-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
}

.pricing-card .card-icon img {
  height: 48px;
  width: 48px;
  margin: 0 auto 1rem;
  border-radius: 8px;
}

.pricing-card .card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card .card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.pricing-card .annual-review-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.pricing-card .annual-review-cost {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  text-align: left;
}

.features-list li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* Founding families badge */
.founding-badge {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  background: var(--gold-dim);
}

.founding-badge img {
  height: 64px;
  margin: 0 auto 1rem;
}

.founding-badge .seats {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section details {
  border-bottom: 1px solid var(--border-glass);
  padding: 1.25rem 0;
}

.faq-section summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.faq-section summary:hover { color: var(--gold); }
.faq-section summary::-webkit-details-marker { display: none; }

.faq-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

details[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-badge {
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

.faq-group {
  margin-bottom: 3rem;
}

/* ============================================================
   CONTACT / CAL EMBED
   ============================================================ */
.contact-section {
  text-align: center;
}

.contact-section .subtitle {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.cal-embed-container {
  max-width: 800px;
  margin: 0 auto;
  min-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}

/* ============================================================
   AUDIT EMBED
   ============================================================ */
.audit-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-text h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* ============================================================
   ZERO-KNOWLEDGE BADGE
   ============================================================ */
.zk-section {
  text-align: center;
}

.zk-badge-large {
  display: inline-block;
  padding: 2rem 3rem;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.zk-badge-large .zk-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.zk-badge-large .zk-detail {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   GLOW LINE (decorative)
   ============================================================ */
.glow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ============================================================
   PAYMENT INFO
   ============================================================ */
.payment-info {
  text-align: center;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.payment-option {
  margin-bottom: 0.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(5, 5, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.open { transform: translateX(0); }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .act { min-height: auto; padding: 60px 20px; }

  .hero-content { padding-top: 120px; }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 60px;
  }

  .cta-btn {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
  }

  .pricing-card .card-price {
    font-size: 1.6rem;
  }
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* ============================================================
   LOADING STATE
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  height: 48px;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}
