/* ================================================================
   ANIMA TEST — Design System V2
   Mystical-Scientific Dark Mode · Jungian Aesthetic
   ================================================================ */

/* ── Google Fonts ──
   Loaded via <link rel="stylesheet"> in each page's <head> (with preconnect),
   NOT via @import here: an @import inside this file serializes the chain
   HTML → this CSS → fonts CSS → font files, delaying first render by whole
   round-trips on mobile. If you add a page, copy the font <link> block from
   test.html. */

/* ================================================================
   1. DESIGN TOKENS
   ================================================================ */
:root {
  /* ── Color Palette ── */
  --color-void:           #050508;
  --color-abyss:          #0a0a0f;
  --color-deep:           #0d1117;
  --color-surface:        #13141d;
  --color-surface-raised: #1a1b2e;
  --color-surface-hover:  #222338;
  --color-border:         #2a2b3d;
  --color-border-subtle:  #1e1f30;

  --color-gold:           #c8a862;
  --color-gold-light:     #dbc78e;
  --color-gold-dark:      #a68b42;
  --color-gold-glow:      rgba(200, 168, 98, 0.15);

  --color-purple:         #7b68ee;
  --color-purple-deep:    #4a3580;
  --color-purple-muted:   #5c4d9e;
  --color-purple-glow:    rgba(123, 104, 238, 0.12);

  --color-text-primary:   #e8e6e3;
  --color-text-secondary: #9b99a7;
  --color-text-tertiary:  #6b6978;
  --color-text-inverse:   #0a0a0f;

  --color-success:        #4ade80;
  --color-warning:        #fbbf24;
  --color-error:          #f87171;

  /* ── Typography ── */
  --font-serif:    'Cormorant Garamond', 'Georgia', serif;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-display:    clamp(2.8rem, 5vw, 4.5rem);
  --fs-h1:         clamp(2rem, 3.5vw, 3rem);
  --fs-h2:         clamp(1.6rem, 2.5vw, 2.2rem);
  --fs-h3:         clamp(1.2rem, 2vw, 1.5rem);
  --fs-h4:         1.125rem;
  --fs-body:       1rem;
  --fs-body-sm:    0.875rem;
  --fs-caption:    0.75rem;
  --fs-overline:   0.6875rem;

  --lh-tight:      1.15;
  --lh-snug:       1.3;
  --lh-normal:     1.6;
  --lh-relaxed:    1.8;

  --fw-light:      300;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;

  --tracking-tight:   -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.1em;

  /* ── Spacing ── */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */

  /* ── Borders & Radius ── */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.6);
  --shadow-xl:      0 16px 64px rgba(0,0,0,0.7);
  --shadow-glow-gold:   0 0 30px rgba(200, 168, 98, 0.2);
  --shadow-glow-purple: 0 0 30px rgba(123, 104, 238, 0.2);
  --shadow-inner:   inset 0 1px 4px rgba(0,0,0,0.3);

  /* ── Glass Effect ── */
  --glass-bg:       rgba(19, 20, 29, 0.7);
  --glass-border:   rgba(255, 255, 255, 0.06);
  --glass-blur:     20px;

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:    150ms;
  --duration-normal:  300ms;
  --duration-slow:    500ms;
  --duration-slower:  800ms;

  /* ── Z-Index ── */
  --z-base:    1;
  --z-dropdown: 10;
  --z-sticky:  20;
  --z-overlay: 30;
  --z-modal:   40;
  --z-toast:   50;
}


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

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

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-text-primary);
  background-color: var(--color-abyss);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-in-out);
}
a:hover { color: var(--color-gold-light); }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* Mobile tap latency: without this, iOS Safari (and some Android webviews)
   wait ~350ms after a tap on clickable elements to rule out a double-tap
   zoom — the "button needs several taps / responds late" feel. */
button, .btn, a, input, select, textarea, [role="button"] {
  touch-action: manipulation;
}

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


/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
.t-display {
  font-family: var(--font-serif);
  font-size: var(--fs-display);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-primary);
}

h1, .t-h1 {
  font-family: var(--font-serif);
  font-size: var(--fs-h1);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
}

h2, .t-h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: var(--fw-regular);
  line-height: var(--lh-snug);
}

h3, .t-h3 {
  font-family: var(--font-serif);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
}

h4, .t-h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.t-overline {
  font-family: var(--font-sans);
  font-size: var(--fs-overline);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-gold);
}

.t-body-sm {
  font-size: var(--fs-body-sm);
  color: var(--color-text-secondary);
}

.t-caption {
  font-size: var(--fs-caption);
  color: var(--color-text-tertiary);
}


/* ================================================================
   4. LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: 800px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding-block: var(--space-24);
}

.section--sm {
  padding-block: var(--space-16);
}

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.flex--between {
  justify-content: space-between;
}

.flex--center {
  justify-content: center;
}

.flex--col {
  flex-direction: column;
}

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


/* ================================================================
   5. COMPONENTS — Buttons
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-out-expo);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-void);
  box-shadow: var(--shadow-glow-gold);
}
/* Hover effects only on devices that truly hover: on touch, the first tap
   "sticks" the hover state (and its transform moves the target under the
   finger), which reads as an unresponsive button. */
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    box-shadow: 0 0 40px rgba(200, 168, 98, 0.35);
    transform: translateY(-2px);
    color: var(--color-void);
  }
}

.btn--secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn--secondary:hover {
  background: var(--color-gold-glow);
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-secondary);
  border-color: var(--color-border);
}
.btn--ghost:hover {
  background: var(--color-surface-hover);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--fs-body);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--fs-caption);
}

/* V2 — Next / Submit Button Variant */
.btn--next {
  min-height: 48px;
  width: 100%;
  max-width: 400px;
  margin-top: var(--space-4);
  font-size: var(--fs-body);
}

.btn--next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* ================================================================
   6. COMPONENTS — Cards
   ================================================================ */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}

.card--glow-gold {
  box-shadow: var(--shadow-glow-gold);
  border-color: rgba(200, 168, 98, 0.2);
}

.card--glow-purple {
  box-shadow: var(--shadow-glow-purple);
  border-color: rgba(123, 104, 238, 0.2);
}


/* ================================================================
   7. COMPONENTS — Form Inputs
   ================================================================ */
.input {
  width: 100%;
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--fs-body);
  transition: all var(--duration-fast) var(--ease-in-out);
  outline: none;
}

.input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.input::placeholder {
  color: var(--color-text-tertiary);
}

.input--lg {
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-h3);
  font-family: var(--font-serif);
  text-align: center;
  background: transparent;
  border-color: var(--color-border-subtle);
}


/* ================================================================
   8. COMPONENTS — Navigation
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: var(--z-sticky);
  padding: var(--space-4) 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: all var(--duration-normal) var(--ease-in-out);
}

.navbar.scrolled {
  padding: var(--space-2) 0;
  background: rgba(10, 10, 15, 0.95);
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: var(--fw-regular);
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-wide);
}

.nav-brand span {
  color: var(--color-gold);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav-links a {
  color: var(--color-text-secondary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  transition: color var(--duration-fast);
}

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

/* Buttons inside the nav must keep their own text color. `.nav-links a` above
   has higher specificity than `.btn--primary`, which would otherwise render the
   "Start free" button label in dim gray (unreadable on the gold gradient). */
.nav-links a.btn--primary { color: var(--color-void); }
.nav-links a.btn--primary:hover { color: var(--color-void); }
.nav-links a.btn--secondary { color: var(--color-gold); }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--color-deep);
    flex-direction: column;
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-border);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}


/* ================================================================
   9. COMPONENTS — Footer
   ================================================================ */
.footer {
  background: var(--color-void);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-16) 0 var(--space-8);
}

.footer__disclaimer {
  max-width: 800px;
  margin-inline: auto;
  padding: var(--space-6);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  background: rgba(200, 168, 98, 0.03);
  margin-bottom: var(--space-8);
}

.footer__disclaimer p {
  font-size: var(--fs-caption);
  color: var(--color-text-tertiary);
  line-height: var(--lh-relaxed);
  text-align: center;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border-subtle);
  font-size: var(--fs-caption);
  color: var(--color-text-tertiary);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
}

.footer__links a {
  color: var(--color-text-tertiary);
  font-size: var(--fs-caption);
}
.footer__links a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}


/* ================================================================
   10. ANIMATIONS — Keyframes
   ================================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 168, 98, 0.15); }
  50%      { box-shadow: 0 0 40px rgba(200, 168, 98, 0.3); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.05); opacity: 1; }
}

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

@keyframes constellationPulse {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(200, 168, 98, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(200, 168, 98, 0.6));
  }
}

@keyframes wordAppear {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes wordDisappear {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
  }
}

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

/* V2 — Node Pulse (constellation node glow) */
@keyframes nodePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(200, 168, 98, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(200, 168, 98, 0);
  }
}


/* ================================================================
   11. ANIMATION UTILITIES
   ================================================================ */
.animate-fade-in {
  animation: fadeIn var(--duration-slow) var(--ease-out-expo) forwards;
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp var(--duration-slower) var(--ease-out-expo) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-breathe {
  animation: breathe 4s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200, 168, 98, 0.08) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Staggered animation delays */
.delay-1 { animation-delay: 100ms; }
.delay-2 { animation-delay: 200ms; }
.delay-3 { animation-delay: 300ms; }
.delay-4 { animation-delay: 400ms; }
.delay-5 { animation-delay: 500ms; }
.delay-6 { animation-delay: 600ms; }

/* Scroll-triggered animation (JS adds .visible) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slower) var(--ease-out-expo),
              transform var(--duration-slower) var(--ease-out-expo);
}

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


/* ================================================================
   12. PROGRESS BAR
   ================================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 2px;
  background: var(--color-border-subtle);
  z-index: var(--z-toast);
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  transition: width var(--duration-normal) var(--ease-out-expo);
  box-shadow: 0 0 10px var(--color-gold-glow);
}


/* ================================================================
   13. BLUR OVERLAY (Freemium Gate)
   ================================================================ */
.blur-gate {
  position: relative;
}

.blur-gate__content {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
}

.blur-gate__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(10, 10, 15, 0.7) 30%,
    rgba(10, 10, 15, 0.95) 100%
  );
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
}

.blur-gate__overlay .t-h3 {
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.blur-gate__overlay .t-body-sm {
  max-width: 400px;
  margin-bottom: var(--space-6);
}


/* ================================================================
   14. DIVIDERS & DECORATIONS
   ================================================================ */
.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: var(--space-8) auto;
}

.divider--wide {
  width: 120px;
}

.glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 10px var(--color-gold), 0 0 20px rgba(200, 168, 98, 0.3);
}


/* ================================================================
   15. SCROLLBAR
   ================================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-void);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-tertiary);
}


/* ================================================================
   16. ACCESSIBILITY
   ================================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ================================================================
   17. V2 — DEMO BANNER
   ================================================================ */
.demo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-toast) + 10);
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-void);
  text-align: center;
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}


/* ================================================================
   18. V2 — LANGUAGE SWITCHER
   ================================================================ */
.lang-switcher {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.lang-switcher:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}


/* ================================================================
   19. V2 — TEXT FADE BLUR
   ================================================================ */
.text-fade-blur {
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* ================================================================
   PRIVACY FOOTNOTE (LGPD transparency, D-010 → footnote D-015)
   ================================================================ */
.privacy-footnote {
  margin: 12px 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.privacy-footnote strong { color: rgba(255, 255, 255, 0.6); font-weight: 600; }
.privacy-footnote__link { color: var(--color-gold, #c8a862); text-decoration: underline; white-space: nowrap; }
