/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a96e;
  --gold-dark: #8b6f3a;
  --gold-light: #e8d5a8;
  --gold-glow: rgba(201, 169, 110, 0.25);
  --bg-deep: #08090e;
  --bg-section: #0c0e15;
  --bg-card: rgba(22, 25, 35, 0.7);
  --text-primary: #e5ddd0;
  --text-muted: #a09688;
  --text-dim: #6d665e;
  --border-subtle: rgba(201, 169, 110, 0.12);
  --border-gold: rgba(201, 169, 110, 0.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

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

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
noscript ~ * .reveal,
.reveal-ready .reveal {
  animation: reveal-fallback 0s 2.5s forwards;
}
.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; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(8, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
  transition: filter 0.4s, transform 0.4s var(--ease-spring);
}

.nav-logo:hover .nav-logo-icon {
  filter: drop-shadow(0 0 6px var(--gold-glow));
  transform: scale(1.1);
}

.footer-logo-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  vertical-align: -3px;
  margin-right: 0.4rem;
  transition: color 0.3s;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep) !important;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 9, 14, 0.97);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
  }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

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

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text { max-width: 560px; }

.hero-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 460px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px var(--gold-glow);
  color: var(--bg-deep);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--gold);
  color: var(--text-primary);
}

/* Phone mockup */
.hero-phone {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 3px solid #2a2a3e;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.1),
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(201, 169, 110, 0.06);
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phone-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  opacity: 0;
  transition: opacity 0.8s;
}

.phone-slide.active { opacity: 1; }

/* Slide 1: Cross loading */
.slide-cross {
  background: radial-gradient(circle at 50% 40%, rgba(201, 169, 110, 0.12), var(--bg-deep));
}

.sacred-cross {
  width: 80px;
  height: 80px;
  opacity: 0.9;
}

.sacred-cross line {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
}

.slide-cross-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 1.5rem;
  font-style: italic;
}

/* Slide 2: Mood selector */
.slide-mood {
  background: var(--bg-deep);
  padding-top: 3.5rem;
}

.slide-mood-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.mini-mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.mini-mood-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.25rem;
  border-radius: 12px;
  background: rgba(201, 169, 110, 0.05);
  border: 1px solid var(--border-subtle);
}

.mini-mood-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.mini-mood-label {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-align: center;
}

/* Slide 3: Verse */
.slide-verse {
  background: radial-gradient(circle at 50% 30%, rgba(201, 169, 110, 0.06), var(--bg-deep));
  text-align: center;
}

.slide-verse-quote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 0.5rem;
}

.slide-verse-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: -1.5rem;
  left: -0.25rem;
  font-family: var(--font-display);
}

.slide-verse-ref {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.slide-verse-version {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .hero-phone { margin-top: 1rem; }
  .phone-frame { width: 240px; height: 480px; }
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════ */
.problem {
  padding: 7rem 0;
  background: var(--bg-section);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.problem-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problem-inner .section-title {
  margin-bottom: 2rem;
}

.problem-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.problem-highlight {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 2.5rem;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: 7rem 0;
  position: relative;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 5rem;
}

.how-it-works-header .section-desc {
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 6px,
    rgba(201, 169, 110, 0.35) 6px,
    rgba(201, 169, 110, 0.35) 12px
  );
  opacity: 1;
}

/* Diamond markers on the connecting line */
.steps-grid::after {
  content: '';
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.6;
  z-index: 1;
}

.step {
  text-align: center;
  position: relative;
  padding: 2.5rem 1.75rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Subtle radial gold backdrop */
.step::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.45s;
  border-radius: 50%;
}

/* Top-left + bottom-right cross marks */
.step::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background:
    /* top-left vertical arm */
    linear-gradient(var(--gold), var(--gold)) 17px 10px / 1px 13px no-repeat,
    /* top-left horizontal arm */
    linear-gradient(var(--gold), var(--gold)) 10px 17px / 13px 1px no-repeat,
    /* bottom-right vertical arm */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 17px) calc(100% - 22px) / 1px 13px no-repeat,
    /* bottom-right horizontal arm */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 22px) calc(100% - 17px) / 13px 1px no-repeat;
  opacity: 0.3;
  transition: opacity 0.45s;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.08),
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(201, 169, 110, 0.07);
}

.step:hover::before {
  opacity: 2.5;
}

.step:hover::after {
  opacity: 0.6;
}

.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.05);
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.06),
    inset 0 0 12px rgba(201, 169, 110, 0.05);
  transition: box-shadow 0.45s, border-color 0.45s;
}

/* Dashed outer ring on step number */
.step-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 110, 0.25);
  animation: slowRotate 20s linear infinite;
  transition: border-color 0.45s;
}

.step:hover .step-number {
  border-color: rgba(201, 169, 110, 0.7);
  box-shadow:
    0 0 0 2px rgba(201, 169, 110, 0.1),
    0 0 20px rgba(201, 169, 110, 0.2),
    inset 0 0 16px rgba(201, 169, 110, 0.08);
  animation: glowPulse 2s ease-in-out infinite;
}

.step:hover .step-number::before {
  border-color: rgba(201, 169, 110, 0.45);
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  opacity: 0.7;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .steps-grid::before { display: none; }
}

/* ═══════════════════════════════════════════
   CRAFTSMANSHIP
═══════════════════════════════════════════ */
.craft {
  padding: 7rem 0;
  background: var(--bg-section);
  position: relative;
}

.craft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.craft-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.craft-3d-badge {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid var(--border-gold);
  background: rgba(201, 169, 110, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.craft-3d-badge::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed var(--border-subtle);
}

.craft-3d-icon {
  width: 80px;
  height: 80px;
  color: var(--gold);
}

.craft-3d-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.craft-content .section-desc {
  margin-bottom: 2rem;
}

.craft-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.craft-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: rgba(201, 169, 110, 0.02);
  transition: border-color 0.3s;
}

.craft-detail:hover {
  border-color: var(--border-gold);
}

.craft-detail-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.craft-detail-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.craft-detail-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .craft-visual { order: -1; }
  .craft-3d-badge { width: 220px; height: 220px; }
  .craft-3d-icon { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════════
   FEATURES / NUMBERS
═══════════════════════════════════════════ */
.features {
  padding: 7rem 0;
  background: var(--bg-section);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-header .section-desc { margin: 0 auto; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem 2rem;
  background: rgba(22, 25, 35, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

/* Diagonal shimmer gradient */
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(201, 169, 110, 0.025) 40%,
    rgba(201, 169, 110, 0.05) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* Gold accent bar at bottom */
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
  border-radius: 2px 2px 0 0;
  opacity: 0.5;
  transition: width 0.4s var(--ease-out), opacity 0.4s;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.07),
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(201, 169, 110, 0.06);
}

.stat-card:hover::after {
  width: 75%;
  opacity: 0.85;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(201, 169, 110, 0.2);
  transition: text-shadow 0.4s;
}

.stat-card:hover .stat-number {
  text-shadow:
    0 0 20px rgba(201, 169, 110, 0.45),
    0 0 60px rgba(201, 169, 110, 0.15);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-item {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  background: rgba(201, 169, 110, 0.02);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, background 0.4s, transform 0.4s var(--ease-out), box-shadow 0.4s;
}

/* Top-left L-shaped manuscript corner mark */
.feature-item::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  border-top: 1.5px solid rgba(201, 169, 110, 0.3);
  border-left: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 2px 0 0 0;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s;
}

/* Bottom-right L-shaped corner mark — mirrored */
.feature-item::after {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-bottom: 1.5px solid rgba(201, 169, 110, 0.3);
  border-right: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 0 0 2px 0;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s;
}

.feature-item:hover {
  border-color: var(--border-gold);
  background: rgba(201, 169, 110, 0.05);
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.06),
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(201, 169, 110, 0.05);
}

.feature-item:hover::before {
  width: 24px;
  height: 24px;
  border-color: rgba(201, 169, 110, 0.65);
}

.feature-item:hover::after {
  width: 24px;
  height: 24px;
  border-color: rgba(201, 169, 110, 0.65);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
  /* Circular semi-transparent gold disc as background using padding + border-radius */
  padding: 10px;
  box-sizing: content-box;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, rgba(201, 169, 110, 0.03) 70%);
  border: 1px solid rgba(201, 169, 110, 0.12);
  transition: opacity 0.35s, filter 0.35s, background 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.feature-item:hover .feature-icon {
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(201, 169, 110, 0.35));
  background: radial-gradient(circle, rgba(201, 169, 110, 0.18) 0%, rgba(201, 169, 110, 0.05) 70%);
  border-color: rgba(201, 169, 110, 0.28);
  box-shadow: 0 0 18px rgba(201, 169, 110, 0.1);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   INTERACTIVE DEMO
═══════════════════════════════════════════ */
.demo {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.demo-header {
  text-align: center;
  margin-bottom: 4rem;
}

.demo-header .section-desc { margin: 0 auto; }

.demo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.demo-phone {
  width: 300px;
  height: 580px;
  background: #1a1a2e;
  border-radius: 40px;
  border: 3px solid #2a2a3e;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 150px rgba(201, 169, 110, 0.04);
  overflow: hidden;
  position: relative;
}

.demo-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.demo-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 2rem;
  background: radial-gradient(circle at 50% 30%, rgba(201, 169, 110, 0.06), var(--bg-deep));
  transition: all 0.6s var(--ease-out);
}

.demo-prompt {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  transition: opacity 0.4s;
}

.demo-verse-display {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease-out);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.75rem 2rem;
}

.demo-verse-display.show {
  opacity: 1;
  transform: translateY(0);
}

.demo-verse-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  position: relative;
  padding-top: 1.5rem;
}

.demo-verse-text::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
}

.demo-verse-ref {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.demo-mood-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 600px;
}

.demo-mood-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.demo-mood-btn:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

.demo-mood-btn.active {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.12);
}

.demo-mood-btn svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.demo-instruction {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing {
  padding: 7rem 0;
  background: var(--bg-section);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.pricing-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pricing-header .section-desc { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 420px;
  margin: 0 auto;
}

.pricing-card {
  padding: 2.5rem;
  background: rgba(22, 25, 35, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
  position: relative;
}

/* Inner atmospheric glow from center */
.pricing-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity 0.5s;
  opacity: 0.6;
}

/* Top-left + top-right corner crosses via outline box-shadow trick */
/* Corner cross top-left */
.pricing-card .pricing-corner-tl,
.pricing-card .pricing-corner-tr,
.pricing-card .pricing-corner-bl,
.pricing-card .pricing-corner-br {
  display: none; /* HTML-free approach: use pseudo on children or outline */
}

/* Double border: inner gold solid + outer ring via box-shadow spread */
.pricing-card.featured {
  border-color: rgba(201, 169, 110, 0.5);
  background: rgba(22, 25, 35, 0.9);
  box-shadow:
    0 0 0 6px rgba(201, 169, 110, 0.04),
    0 0 0 7px rgba(201, 169, 110, 0.12),
    0 0 60px rgba(201, 169, 110, 0.1),
    inset 0 0 40px rgba(201, 169, 110, 0.03);
}

.pricing-card.featured::before {
  width: 340px;
  height: 340px;
  opacity: 1;
}

/* Four corner cross marks using absolute pseudo-elements anchored in corners */
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  /* top-left cross */
  background:
    /* top-left vertical */
    linear-gradient(var(--gold), var(--gold)) 16px 10px / 1px 12px no-repeat,
    /* top-left horizontal */
    linear-gradient(var(--gold), var(--gold)) 10px 16px / 12px 1px no-repeat,
    /* top-right vertical */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 16px) 10px / 1px 12px no-repeat,
    /* top-right horizontal */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 22px) 16px / 12px 1px no-repeat,
    /* bottom-left vertical */
    linear-gradient(var(--gold), var(--gold)) 16px calc(100% - 22px) / 1px 12px no-repeat,
    /* bottom-left horizontal */
    linear-gradient(var(--gold), var(--gold)) 10px calc(100% - 16px) / 12px 1px no-repeat,
    /* bottom-right vertical */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 16px) calc(100% - 22px) / 1px 12px no-repeat,
    /* bottom-right horizontal */
    linear-gradient(var(--gold), var(--gold)) calc(100% - 22px) calc(100% - 16px) / 12px 1px no-repeat;
  opacity: 0.3;
  transition: opacity 0.5s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  box-shadow:
    0 0 0 6px rgba(201, 169, 110, 0.06),
    0 0 0 7px rgba(201, 169, 110, 0.18),
    0 20px 80px rgba(0, 0, 0, 0.6),
    0 0 100px rgba(201, 169, 110, 0.15),
    inset 0 0 50px rgba(201, 169, 110, 0.05);
}

.pricing-card.featured:hover::after {
  opacity: 0.55;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 2px 16px rgba(201, 169, 110, 0.35), 0 0 30px rgba(201, 169, 110, 0.15);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  flex-shrink: 0;
  margin-top: 0.35rem;
  filter: drop-shadow(0 0 3px rgba(201, 169, 110, 0.4));
  transition: transform 0.3s var(--ease-spring), filter 0.3s;
}

.pricing-card:hover .pricing-features li::before {
  animation: diamondPulse 2.5s ease-in-out infinite;
}

.pricing-card:hover .pricing-features li:nth-child(2)::before { animation-delay: 0.3s; }
.pricing-card:hover .pricing-features li:nth-child(3)::before { animation-delay: 0.6s; }
.pricing-card:hover .pricing-features li:nth-child(4)::before { animation-delay: 0.9s; }
.pricing-card:hover .pricing-features li:nth-child(5)::before { animation-delay: 1.2s; }
.pricing-card:hover .pricing-features li:nth-child(6)::before { animation-delay: 1.5s; }

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: 100px;
  border: 1.5px solid var(--border-gold);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-btn:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--gold);
  color: var(--text-primary);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-deep);
  border-color: transparent;
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 4px 24px var(--gold-glow);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .pricing-grid {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════
   MODELS GRID
═══════════════════════════════════════════ */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.model-card {
  background: rgba(22, 25, 35, 0.6);
  border: 1.5px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}

.model-card.selected {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

.model-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.model-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.model-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.model-qty .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: transparent;
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.model-qty .qty-btn:hover {
  background: rgba(201, 169, 110, 0.15);
}

.model-qty span {
  font-size: 1rem;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
  color: var(--gold);
}

.order-summary {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 7rem 0;
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2.25rem;
  background: rgba(22, 25, 35, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, box-shadow 0.45s;
}

/* Large watermark quotation mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  transition: opacity 0.45s;
  user-select: none;
}

/* Gold accent bar at bottom */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.35;
  border-radius: 2px 2px 0 0;
  transition: width 0.45s var(--ease-out), opacity 0.45s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.06),
    0 12px 50px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(201, 169, 110, 0.05);
}

.testimonial-card:hover::before {
  opacity: 0.09;
}

.testimonial-card:hover::after {
  width: 60%;
  opacity: 0.65;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.2rem;
}

.testimonial-card:hover .testimonial-stars {
  animation: starsPulse 2s ease-in-out infinite;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-deep);
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.15);
  transition: box-shadow 0.45s;
}

.testimonial-card:hover .testimonial-avatar {
  box-shadow:
    0 0 0 2px rgba(201, 169, 110, 0.4),
    0 0 16px rgba(201, 169, 110, 0.2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq {
  padding: 7rem 0;
  background: var(--bg-section);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  padding: 8rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta .section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.final-cta .section-desc {
  margin: 0 auto 3rem;
  font-size: 1.15rem;
}

.final-cta .btn-primary {
  font-size: 1rem;
  padding: 1.15rem 3rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-legal-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--gold);
}

.footer-legal-sep {
  opacity: 0.4;
}

/* ═══════════════════════════════════════════
   NOISE OVERLAY
═══════════════════════════════════════════ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.025;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes cross-draw {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

/* Sacred Signal keyframes */
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(201, 169, 110, 0.1),
      0 0 12px rgba(201, 169, 110, 0.15),
      inset 0 0 10px rgba(201, 169, 110, 0.05);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(201, 169, 110, 0.18),
      0 0 28px rgba(201, 169, 110, 0.3),
      inset 0 0 18px rgba(201, 169, 110, 0.1);
  }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes diamondPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    filter: drop-shadow(0 0 3px rgba(201, 169, 110, 0.4));
  }
  50% {
    transform: scale(1.4) rotate(45deg);
    filter: drop-shadow(0 0 6px rgba(201, 169, 110, 0.7));
  }
}

@keyframes starsPulse {
  0%, 100% { opacity: 1; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(201, 169, 110, 0.5); }
}

/* Accessibility: focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
