/* RNA Executive Solutions — Shared Landing Stylesheet
 * Loaded by: /medspa, /sprint
 * Palette tokens match existing /index.html — NO new colors introduced
 */

:root {
  --bg:         #0a1628;
  --bg-2:       #0d1e3a;
  --bg-3:       #1a2f4a;
  --gold:       #c5a55a;
  --gold-lt:    #e8d4a2;
  --text:       #f0f0f5;
  --muted:      #9ca3af;
  --border:     rgba(197, 165, 90, 0.18);
  --border-hot: rgba(197, 165, 90, 0.42);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

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

/* ───── Typography pro defaults (SEO checklist 16-18) ───── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0;
}
h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
p, li { line-height: 1.55; }

/* ───── Aurora background (pure CSS, GPU accelerated) ───── */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.aurora::before,
.aurora::after {
  content: '';
  position: absolute;
  width: 85vw;
  height: 85vh;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: aurora-drift 28s ease-in-out infinite;
  will-change: transform, opacity;
}
.aurora::before {
  top: -25%;
  left: -20%;
  background: radial-gradient(circle, rgba(26, 47, 74, 0.55) 0%, transparent 60%);
}
.aurora::after {
  bottom: -25%;
  right: -15%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.14) 0%, transparent 55%);
  animation-delay: -14s;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  33%      { transform: translate(6vw, -4vh) scale(1.08); opacity: 0.72; }
  66%      { transform: translate(-5vw, 5vh) scale(0.94); opacity: 0.48; }
}

.aurora-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.85'/></svg>");
  mix-blend-mode: overlay;
}

.page-wrap { position: relative; z-index: 2; }

/* ───── Reduced motion fallback (SEO checklist 39) ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  html { scroll-behavior: auto; }
  .sr-enter { opacity: 1 !important; transform: none !important; }
}

/* ───── Gradient gold text ───── */
.gradient-gold {
  background: linear-gradient(135deg, #c5a55a 0%, #e8d4a2 45%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* ───── CTA buttons ───── */
.cta-primary {
  display: inline-block;
  padding: 16px 36px;
  border: 1.5px solid var(--gold);
  background: rgba(10, 22, 40, 0.55);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(232, 212, 162, 0.18) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.cta-primary:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(197, 165, 90, 0.28);
  border-color: var(--gold-lt);
}
.cta-primary:hover::before { transform: translateX(110%); }
.cta-primary:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; }

.cta-filled {
  background: var(--gold);
  color: var(--bg);
}
.cta-filled:hover {
  background: var(--gold-lt);
}

.cta-secondary {
  display: inline-block;
  padding: 14px 28px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cta-secondary:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ───── Liquid Glass tiles (Apple-style, palette-safe) ───── */
.glass-tile {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(13, 30, 58, 0.48) 0%,
    rgba(26, 47, 74, 0.72) 100%
  );
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(232, 212, 162, 0.10);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.glass-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 212, 162, 0.25) 0%, transparent 45%);
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.glass-tile:hover {
  border-color: var(--border-hot);
  transform: translateY(-3px);
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(197, 165, 90, 0.18),
    inset 0 1px 0 rgba(232, 212, 162, 0.18);
}
.glass-tile--featured {
  background: linear-gradient(
    180deg,
    rgba(26, 47, 74, 0.65) 0%,
    rgba(13, 30, 58, 0.85) 100%
  );
  border-color: rgba(197, 165, 90, 0.36);
}

/* ───── Small UI primitives ───── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.85;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.9;
}

/* ───── Scroll-triggered entrance ───── */
.sr-enter {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.sr-enter.sr-in { opacity: 1; transform: none; }

.sr-enter--delay-1 { transition-delay: 0.08s; }
.sr-enter--delay-2 { transition-delay: 0.16s; }
.sr-enter--delay-3 { transition-delay: 0.24s; }
.sr-enter--delay-4 { transition-delay: 0.32s; }

/* ───── Big stat number ───── */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #c5a55a 0%, #e8d4a2 55%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

/* ───── FAQ details ───── */
details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
details summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-right: 40px;
  transition: color 0.3s ease;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--gold);
  font-size: 28px;
  transition: transform 0.3s ease, content 0.3s ease;
}
details[open] summary { color: var(--gold-lt); }
details[open] summary::after { content: '−'; }
details p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ───── Hero network SVG decoration ───── */
.hero-network {
  position: absolute;
  top: 12%;
  right: 4%;
  width: 260px;
  max-width: 30vw;
  opacity: 0.2;
  pointer-events: none;
}
@media (max-width: 1024px) { .hero-network { display: none; } }
.hero-network circle {
  animation: node-pulse 3.5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-network circle:nth-child(even) { animation-delay: -1.2s; }
.hero-network line { stroke-dasharray: 4 3; animation: line-dash 12s linear infinite; }
@keyframes node-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.35); }
}
@keyframes line-dash {
  to { stroke-dashoffset: -56; }
}

/* ───── Hero Liquid Glass preview mock ───── */
.hero-preview {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(13, 30, 58, 0.78) 0%, rgba(10, 22, 40, 0.92) 100%);
  border: 1px solid rgba(232, 212, 162, 0.22);
  border-radius: 14px;
  padding: 26px 24px;
  backdrop-filter: blur(32px) saturate(200%) brightness(120%);
  -webkit-backdrop-filter: blur(32px) saturate(200%) brightness(120%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(232, 212, 162, 0.16);
  animation: preview-float 9s ease-in-out infinite;
  will-change: transform;
}
.hero-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 212, 162, 0.3) 0%, transparent 55%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@keyframes preview-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 212, 162, 0.14);
}
.preview-head-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(197, 165, 90, 0.6);
}
.preview-row {
  height: 7px;
  background: linear-gradient(90deg, rgba(197, 165, 90, 0.45), rgba(197, 165, 90, 0.06));
  border-radius: 4px;
  margin-bottom: 12px;
}
.preview-row--short { width: 62%; }
.preview-row--mini  { width: 38%; height: 5px; }
.preview-metric {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c5a55a, #e8d4a2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 6px 0;
}
.preview-caption {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───── Trust bar (section 21) ───── */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-bar span { white-space: nowrap; }
.trust-bar .dot { color: var(--gold); opacity: 0.55; }

/* ───── Shared nav ───── */
.rna-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10, 22, 40, 0.82);
  border-bottom: 1px solid rgba(197, 165, 90, 0.1);
}
.rna-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rna-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.rna-nav-brand img { height: 32px; width: auto; }
.rna-nav-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) { .rna-nav-brand span { display: none; } }

/* ───── Footer ───── */
.rna-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(197, 165, 90, 0.1);
  background: rgba(10, 22, 40, 0.5);
}
.rna-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .rna-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.rna-footer-brand { display: flex; align-items: center; gap: 12px; }
.rna-footer-brand img { height: 22px; opacity: 0.8; }
.rna-footer-brand span { font-size: 13px; color: var(--muted); }
.rna-footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.rna-footer-links a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}
.rna-footer-links a:hover { color: var(--gold); }
.rna-footer-copy { font-size: 11px; color: var(--muted); opacity: 0.7; }

/* ═══════════════════════════════════════════════════════════════
 * SECTION VARIANTS — differentiated backgrounds per section
 * (Mirrors existing index.html structure for brand continuity)
 * ═══════════════════════════════════════════════════════════════ */

/* Base section wrapper — holds position:relative + overflow control */
.section {
  position: relative;
  overflow: hidden;
}

/* Variant: diagonal gradient + subtle grid pattern */
.section-diagonal {
  background: linear-gradient(135deg, #0d1e3a 0%, #0a1628 50%, #0d1e3a 100%);
}
.section-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 165, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 165, 90, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* Variant: deepest navy + cinematic gold spotlight */
.section-spotlight {
  background:
    radial-gradient(ellipse 900px 600px at 50% 40%, rgba(197, 165, 90, 0.09), transparent 65%),
    #06101f;
}
.section-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(232, 212, 162, 0.06) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(197, 165, 90, 0.05) 0%, transparent 30%);
  pointer-events: none;
  z-index: 0;
}

/* Variant: left-side gold timeline line */
.section-timeline {
  background: #0c1a30;
}
.section-timeline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(197, 165, 90, 0.25) 15%,
    rgba(197, 165, 90, 0.4) 50%,
    rgba(197, 165, 90, 0.25) 85%,
    transparent 100%);
  z-index: 0;
  pointer-events: none;
}

/* Variant: right-side gold glow */
.section-glow-right {
  background:
    radial-gradient(ellipse 800px 500px at 95% 30%, rgba(197, 165, 90, 0.06), transparent 60%),
    #0a1628;
}

/* Variant: floating orbs (CTA / highlight sections) */
.section-orbs {
  background:
    radial-gradient(ellipse 800px 500px at 50% 50%, rgba(197, 165, 90, 0.12), transparent 60%),
    #0a1628;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
  will-change: transform;
}
.cta-orb--1 {
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(232, 212, 162, 0.22) 0%, rgba(197, 165, 90, 0.1) 40%, transparent 70%);
  top: 10%;
  left: 12%;
  animation: ctaOrbFloat1 16s ease-in-out infinite;
}
.cta-orb--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.18) 0%, rgba(197, 165, 90, 0.06) 40%, transparent 70%);
  bottom: 12%;
  right: 10%;
  animation: ctaOrbFloat2 20s ease-in-out infinite;
}
@keyframes ctaOrbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}
@keyframes ctaOrbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-40px, 24px) scale(1.05); }
}

/* Section backdrop numeral (huge decorative number) */
.section-backdrop-number {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 300;
  color: rgba(197, 165, 90, 0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
@media (max-width: 768px) {
  .section-backdrop-number { font-size: 160px; right: -5%; opacity: 0.7; }
}

/* Section divider with gold glyph */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
  position: relative;
  background: #0a1628;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 165, 90, 0.3), transparent);
}
.divider-glyph {
  width: 8px;
  height: 8px;
  margin: 0 20px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(197, 165, 90, 0.6);
  opacity: 0.8;
}

/* All section children must sit above decorative pseudo-elements */
.section > .section-inner,
.section > .container,
.section > .max-w-4xl,
.section > .max-w-5xl,
.section > .max-w-6xl,
.section > .max-w-7xl,
.section > .max-w-3xl { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
 * PHOTO TILES — image-top card with layered photography
 * ═══════════════════════════════════════════════════════════════ */

.photo-tile {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(13, 30, 58, 0.55) 0%,
    rgba(26, 47, 74, 0.80) 100%
  );
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(232, 212, 162, 0.10);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.photo-tile:hover {
  border-color: var(--border-hot);
  transform: translateY(-4px);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(197, 165, 90, 0.22),
    inset 0 1px 0 rgba(232, 212, 162, 0.20);
}
.photo-tile__image {
  position: relative;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center 22%; /* Bias crop upward so faces stay visible */
  background-color: #0a1628;
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.photo-tile:hover .photo-tile__image { transform: scale(1.04); }
.photo-tile__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
}
.photo-tile__content {
  position: relative;
  padding: 26px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════════
 * ANCORA PROOF — large photo+text block for infrastructure proof
 * ═══════════════════════════════════════════════════════════════ */

.ancora-proof {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(197, 165, 90, 0.36);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(232, 212, 162, 0.14);
}
@media (min-width: 768px) {
  .ancora-proof { grid-template-columns: 1.1fr 1fr; min-height: 380px; }
}
.ancora-proof__image {
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.ancora-proof__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
}
@media (min-width: 768px) {
  .ancora-proof__image::after {
    background: linear-gradient(90deg, transparent 0%, rgba(10, 22, 40, 0.88) 100%);
  }
}
.ancora-proof__content {
  position: relative;
  padding: 36px;
  background: linear-gradient(180deg, rgba(26, 47, 74, 0.72) 0%, rgba(13, 30, 58, 0.92) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
 * NAV BRAND — upgraded logo sizing + wordmark treatment
 * ═══════════════════════════════════════════════════════════════ */

.rna-nav-inner { padding: 18px 24px; }
.rna-nav-brand img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(197, 165, 90, 0.25));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.rna-nav-brand:hover img {
  filter: drop-shadow(0 4px 14px rgba(197, 165, 90, 0.45));
  transform: scale(1.04);
}
.rna-nav-brand span {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #f0f0f5 0%, #e8d4a2 60%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) {
  .rna-nav-brand img { height: 48px; }
  .rna-nav-brand span { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
 * SPRINT TIMELINE MODULE — animated hero preview
 * Active week pulses. Bar shimmers. "30" breathes.
 * Signals "this is live, this is working" to the visitor.
 * ═══════════════════════════════════════════════════════════════ */

.sprint-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(232, 212, 162, 0.14);
}
.sprint-timeline-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Live indicator */
.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 500;
}
.live-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(197, 165, 90, 0.6);
  animation: live-pulse 1.8s ease-in-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(197, 165, 90, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(197, 165, 90, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 165, 90, 0); }
}

/* Big countdown number with breathing glow */
.timeline-countdown {
  position: relative;
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c5a55a 0%, #e8d4a2 55%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 14px 0 8px 0;
  animation: countdown-breathe 3.2s ease-in-out infinite;
}
.timeline-countdown::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.25) 0%, transparent 65%);
  filter: blur(18px);
  z-index: -1;
  animation: countdown-glow 3.2s ease-in-out infinite;
  pointer-events: none;
}
.timeline-countdown-unit {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 10px;
  vertical-align: middle;
  opacity: 0.7;
}
@keyframes countdown-breathe {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 1; }
}
@keyframes countdown-glow {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
  50%      { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

/* Weeks container with connecting vertical line */
.sprint-weeks {
  position: relative;
  margin-top: 22px;
  padding-left: 2px;
}
.sprint-weeks::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg,
    rgba(197, 165, 90, 0.55) 0%,
    rgba(197, 165, 90, 0.22) 50%,
    rgba(197, 165, 90, 0.08) 100%);
  z-index: 0;
}

/* Each week row */
.week-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.week-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 165, 90, 0.4);
  background: rgba(10, 22, 40, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

/* Active week — pulsing gold ring */
.week-row--active .week-num {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(13, 30, 58, 0.95);
  animation: week-pulse 2.4s ease-in-out infinite;
}
@keyframes week-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0   rgba(197, 165, 90, 0.45),
      0 0 12px  rgba(197, 165, 90, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(197, 165, 90, 0.06),
      0 0 22px  rgba(197, 165, 90, 0.75);
  }
}

/* Pending weeks — static dim */
.week-row--pending .week-num { opacity: 0.7; }

/* Week progress bar */
.week-bar {
  flex: 1;
  height: 6px;
  background: rgba(197, 165, 90, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.week-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    rgba(197, 165, 90, 0.8) 0%,
    rgba(232, 212, 162, 0.95) 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(197, 165, 90, 0.5);
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Active bar breathes between fills + has shimmer sweep */
.week-row--active .week-bar__fill {
  animation: bar-breathe 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes bar-breathe {
  0%   { width: 18%; }
  50%  { width: 38%; }
  100% { width: 22%; }
}
.week-bar__shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232, 212, 162, 0.55) 50%,
    transparent 100%);
  transform: translateX(-100%);
}
.week-row--active .week-bar__shimmer {
  animation: bar-shimmer 3.2s ease-in-out infinite;
}
@keyframes bar-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(300%); }
  100% { transform: translateX(300%); }
}

/* Pending bars — short static stub, dim */
.week-row--pending .week-bar__fill {
  width: 0;
  background: rgba(197, 165, 90, 0.18);
  box-shadow: none;
}

/* Week label */
.week-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 64px;
  text-align: right;
  transition: color 0.4s ease;
}
.week-row--active .week-label {
  color: var(--gold-lt);
  font-weight: 500;
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .timeline-countdown,
  .timeline-countdown::after,
  .live-dot::before,
  .week-row--active .week-num,
  .week-row--active .week-bar__fill,
  .week-row--active .week-bar__shimmer { animation: none !important; }
  .week-row--active .week-bar__fill { width: 28%; }
}

/* ═══════════════════════════════════════════════════════════════
 * ILLUMI GRID — "Light Up" + "Connected Dashboard" hybrid
 * 3×3 micro-metric tiles. Sequential illumination + independent
 * per-tile animations (counters, sparklines, bars, checks, pulse, ring).
 * ═══════════════════════════════════════════════════════════════ */

.illumi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.illumi-tile {
  position: relative;
  aspect-ratio: 1.15;
  border-radius: 8px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(197, 165, 90, 0.08);
  padding: 10px 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  opacity: 0.28;
  transform: scale(0.94);
  transition:
    opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 0.8s ease,
    box-shadow 0.8s ease,
    background 0.8s ease;
}

.illumi-tile.lit {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(197, 165, 90, 0.32);
  background: linear-gradient(180deg, rgba(26, 47, 74, 0.68) 0%, rgba(13, 30, 58, 0.88) 100%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(232, 212, 162, 0.14);
}

/* Gold ignition flash the moment a tile lights up */
.illumi-tile.just-lit {
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(232, 212, 162, 0.14),
    0 0 28px rgba(197, 165, 90, 0.55),
    0 0 0 1px rgba(232, 212, 162, 0.35);
}

/* Inner specular */
.illumi-tile.lit::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232, 212, 162, 0.22) 0%, transparent 45%);
  -webkit-mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.illumi-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.78;
  line-height: 1.25;
}

.illumi-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c5a55a 0%, #e8d4a2 55%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}

/* Sparkline */
.illumi-sparkline {
  width: 100%;
  height: 26px;
  overflow: visible;
}
.illumi-sparkline path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  filter: drop-shadow(0 0 3px rgba(197, 165, 90, 0.45));
}
.illumi-tile.lit .illumi-sparkline path {
  animation: sparkline-draw 2.2s 0.1s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes sparkline-draw { to { stroke-dashoffset: 0; } }

/* Bar chart */
.illumi-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  width: 100%;
}
.illumi-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(232, 212, 162, 0.92) 0%, rgba(197, 165, 90, 0.45) 100%);
  border-radius: 2px 2px 0 0;
  height: 8%;
  box-shadow: 0 0 4px rgba(197, 165, 90, 0.3);
}
.illumi-tile.lit .illumi-bar {
  animation: bar-grow 1.4s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.illumi-tile.lit .illumi-bar:nth-child(1) { animation-delay: 0.15s; --h: 45%; }
.illumi-tile.lit .illumi-bar:nth-child(2) { animation-delay: 0.25s; --h: 70%; }
.illumi-tile.lit .illumi-bar:nth-child(3) { animation-delay: 0.35s; --h: 55%; }
.illumi-tile.lit .illumi-bar:nth-child(4) { animation-delay: 0.45s; --h: 90%; }
.illumi-tile.lit .illumi-bar:nth-child(5) { animation-delay: 0.55s; --h: 78%; }
@keyframes bar-grow {
  from { height: 8%; }
  to   { height: var(--h); }
}

/* Checkmark */
.illumi-check-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
}
.illumi-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 165, 90, 0.16) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.illumi-check svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  filter: drop-shadow(0 0 4px rgba(197, 165, 90, 0.5));
}
.illumi-tile.lit .illumi-check { transform: scale(1); }
.illumi-tile.lit .illumi-check svg {
  animation: check-draw 0.55s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes check-draw { to { stroke-dashoffset: 0; } }

/* Pulse dot */
.illumi-pulse-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
}
.illumi-pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
  box-shadow: 0 0 8px rgba(197, 165, 90, 0.5);
}
.illumi-tile.lit .illumi-pulse {
  opacity: 1;
  transform: scale(1);
  animation: pulse-ring 2.2s 0.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(197, 165, 90, 0.7), 0 0 8px rgba(197, 165, 90, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(197, 165, 90, 0), 0 0 8px rgba(197, 165, 90, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(197, 165, 90, 0), 0 0 8px rgba(197, 165, 90, 0.5); }
}

/* Progress ring */
.illumi-ring-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}
.illumi-ring {
  width: 38px;
  height: 38px;
  transform: rotate(-90deg);
}
.illumi-ring circle {
  fill: none;
  stroke: rgba(197, 165, 90, 0.15);
  stroke-width: 3;
}
.illumi-ring circle.progress {
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: drop-shadow(0 0 3px rgba(197, 165, 90, 0.55));
}
.illumi-tile.lit .illumi-ring circle.progress {
  animation: ring-fill 2.2s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
@keyframes ring-fill { to { stroke-dashoffset: 28; } }

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .illumi-tile { opacity: 1; transform: none; }
  .illumi-tile.lit,
  .illumi-tile.just-lit { animation: none; }
  .illumi-sparkline path { stroke-dashoffset: 0 !important; animation: none !important; }
  .illumi-check { transform: scale(1) !important; }
  .illumi-check svg { stroke-dashoffset: 0 !important; animation: none !important; }
  .illumi-ring circle.progress { stroke-dashoffset: 28 !important; animation: none !important; }
  .illumi-pulse { opacity: 1 !important; transform: scale(1) !important; animation: none !important; }
  .illumi-bar { animation: none !important; height: var(--h, 50%) !important; }
}

/* ═══════════════════════════════════════════════════════════════
 * BLIND SPOT REPORT — form + loading + results states
 * ═══════════════════════════════════════════════════════════════ */

.bs-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.bs-field label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.9;
}
.bs-field input,
.bs-field select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 22, 40, 0.65);
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.bs-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(1em + 6px),
    calc(100% - 15px) calc(1em + 6px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 42px;
  cursor: pointer;
}
.bs-field select option {
  background: var(--bg-2);
  color: var(--text);
}
.bs-field input:focus,
.bs-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(13, 30, 58, 0.85);
  box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.12);
}
.bs-field input::placeholder { color: var(--muted); opacity: 0.55; }
.bs-field .bs-hint {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: 2px;
}
/* Honeypot — hidden from users, catches bots */
.bs-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.bs-submit-btn {
  width: 100%;
  padding: 18px 28px;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
  margin-top: 8px;
}
.bs-submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 165, 90, 0.35);
}
.bs-submit-btn:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.bs-submit-btn:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; }

.bs-error {
  padding: 14px 18px;
  background: rgba(197, 80, 80, 0.08);
  border: 1px solid rgba(197, 80, 80, 0.35);
  border-radius: 6px;
  color: #e8b2b2;
  font-size: 13px;
  margin-bottom: 16px;
}

/* Loading state (shown between submit and report render) */
.bs-loading {
  text-align: center;
  padding: 48px 24px;
}
.bs-loading-spinner {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(197, 165, 90, 0.18);
  border-top-color: var(--gold);
  animation: bs-spin 1.2s linear infinite;
  margin-bottom: 22px;
}
@keyframes bs-spin { to { transform: rotate(360deg); } }
.bs-loading-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.bs-loading-sub {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.75;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Report results — individual dark-spot card */
.dark-spot-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(13, 30, 58, 0.55) 0%,
    rgba(26, 47, 74, 0.80) 100%
  );
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 28px;
  margin-bottom: 16px;
  backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(115%);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(232, 212, 162, 0.1);
}
.dark-spot-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-lt), var(--gold));
  border-radius: 3px 0 0 3px;
  box-shadow: 0 0 12px rgba(197, 165, 90, 0.4);
}
.dark-spot-card h3 {
  font-size: 22px;
  margin: 0 0 6px 0;
  color: var(--text);
}
.dark-spot-card .dark-spot-cost {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.dark-spot-card .dark-spot-cost strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #c5a55a, #e8d4a2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 4px;
}
.dark-spot-card p { color: var(--muted); line-height: 1.6; font-size: 15px; margin-bottom: 12px; }
.dark-spot-card .dark-spot-outcome {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(197, 165, 90, 0.08);
  border: 1px solid rgba(197, 165, 90, 0.25);
  border-radius: 999px;
  color: var(--gold-lt);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.dark-spot-card .dark-spot-outcome:hover {
  background: rgba(197, 165, 90, 0.16);
  border-color: var(--gold);
}

/* Total leak summary */
.report-total-leak {
  text-align: center;
  padding: 36px 24px;
  margin: 28px 0;
  border-top: 1px solid rgba(197, 165, 90, 0.25);
  border-bottom: 1px solid rgba(197, 165, 90, 0.25);
}
.report-total-leak .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.report-total-leak .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #c5a55a 0%, #e8d4a2 55%, #c5a55a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
}
.report-total-leak .disclaimer {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.7;
  font-style: italic;
  margin-top: 10px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
