/**
 * index.css — Friendly Web Studio Design System
 * Purpose: Complete CSS Design System with sovereign tokens, grain overlay,
 *          glass utilities, scroll-driven animations, and prefers-reduced-motion.
 * Created: 2026-05-25
 * Author: Antigravity Senior Agent
 */

/* ================================================================
   1. DESIGN TOKENS — HSL + OKLCH colors, 60/30/10 rule
   ================================================================ */
:root {
  /* --- Profundidade da Noite Imperial (60% Base) --- */
  --color-base: #030305;               /* Void Royal - fundo geral absoluto */
  --color-base-alt: #08080c;           /* Camada da meia-noite */
  --color-surface: #0e0e16;            /* Fundo de cards elevados */
  --color-surface-elevated: #161622;   /* Bordas/Superfícies mais elevadas */

  /* --- Ouro Regent Metálico (10% Acento) --- */
  --color-peach: #d4af37;              /* Ouro Regent */
  --color-peach-light: #f3e5ab;        /* Ouro suave / champanhe */
  --color-peach-dark: #aa7c11;         /* Ouro envelhecido */

  /* --- Mapeamento Sage para Paleta Real (Tons militares dourados nobres) --- */
  --color-sage: #c5a028;               /* Ouro secundário */
  --color-sage-light: #161622;         /* Fundo de badges */
  --color-sage-dark: #d4af37;          /* Texto de badges */
  --color-sage-muted: #5e4e20;

  /* --- Textos de Contraste Máximo (30% Secundário) --- */
  --color-text-primary: #f8fafc;       /* Prata enevoada para leitura */
  --color-text-secondary: #94a3b8;     /* Cinza slate */
  --color-text-tertiary: #475569;      /* Cinza escuro para detalhes e meta */
  --color-text-inverse: #030305;       /* Texto escuro em botões claros */

  /* --- Refração Real (Liquid Glass) --- */
  --glass-bg: rgba(14, 14, 22, 0.75);
  --glass-border: rgba(212, 175, 55, 0.12);
  --glass-shadow: rgba(3, 3, 5, 0.6);

  /* --- OKLCH accent tokens (modern browsers) --- */
  --oklch-peach: oklch(0.76 0.12 70);
  --oklch-sage: oklch(0.72 0.1 85);

  /* --- Site Generator v2 Standard Tokens (Aliases) --- */
  --color-void:      var(--color-base);
  --color-void-alt: var(--color-base-alt);
  /* --color-surface e --color-surface-elevated ja existem acima */
  --color-accent:    var(--color-peach);
  --color-accent-light: var(--color-peach-light);
  --color-accent-dark: var(--color-peach-dark);
  --color-accent-glow: hsla(45, 65%, 52%, 0.3);
  --color-text:      var(--color-text-primary);
  --color-text-muted: var(--color-text-secondary);

  /* --- Tipografia Soberana --- */
  --font-display: 'Cinzel', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3125vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.0625rem);
  --text-lg: clamp(1.0625rem, 0.95rem + 0.5625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
  --text-5xl: clamp(2.75rem, 2rem + 3.75vw, 4.5rem);

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

  /* --- Radii --- */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 100vw;

  /* --- Easing (NEVER linear or ease-in-out) --- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Transitions --- */
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* --- Layout --- */
  --max-width: 72rem;
  --section-padding: var(--space-10);
  --container-gutter: clamp(var(--space-5), 5vw, var(--space-9));
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-base);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  text-wrap: balance;
  font-weight: 600;
}

p {
  max-width: 65ch;
  text-wrap: pretty;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}


/* ================================================================
   3. GRAIN OVERLAY (Atmospheric — SVG Noise via ::after)
   ================================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}


/* ================================================================
   4. CONTAINER UTILITY
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}


/* ================================================================
   5. GLASSMORPHISM UTILITY
   ================================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 2px var(--glass-shadow),
    0 4px 12px var(--glass-shadow),
    0 16px 40px hsla(220, 15%, 18%, 0.03);
}


/* ================================================================
   6. CARD STYLES (Float hover + layered shadows)
   ================================================================ */
.card {
  background: var(--color-surface);
  border: 1px solid hsl(40, 20%, 90%);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition:
    transform var(--duration-normal) var(--ease-hover),
    box-shadow var(--duration-normal) var(--ease-hover);
  box-shadow:
    0 1px 3px hsla(220, 15%, 18%, 0.04),
    0 4px 12px hsla(220, 15%, 18%, 0.03);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px hsla(220, 15%, 18%, 0.04),
    0 8px 24px hsla(220, 15%, 18%, 0.06),
    0 24px 48px hsla(220, 15%, 18%, 0.04),
    0 0 0 1px hsla(150, 18%, 55%, 0.12);
}


/* ================================================================
   7. BUTTON STYLES (Glow on hover, specific property transitions)
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-pill);
  transition:
    transform var(--duration-fast) var(--ease-hover),
    box-shadow var(--duration-normal) var(--ease-hover),
    background-color var(--duration-fast) var(--ease-hover);
  letter-spacing: 0.01em;
}

.btn-primary {
  background-color: var(--color-peach);
  color: var(--color-text-primary);
  box-shadow:
    0 1px 3px hsla(18, 80%, 50%, 0.15),
    0 4px 12px hsla(18, 80%, 50%, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-color: var(--color-peach-dark);
  box-shadow:
    0 2px 8px hsla(18, 80%, 50%, 0.2),
    0 8px 24px hsla(18, 80%, 50%, 0.15),
    0 0 40px hsla(18, 80%, 68%, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 1.5px solid hsl(220, 15%, 82%);
  box-shadow: 0 1px 2px hsla(220, 15%, 18%, 0.04);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--color-sage);
  box-shadow:
    0 2px 8px hsla(150, 18%, 55%, 0.12),
    0 0 32px hsla(150, 18%, 55%, 0.08);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}


/* ================================================================
   8. PING BADGE
   ================================================================ */
.ping-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-sage-dark);
  background: var(--color-sage-light);
  padding: var(--space-1) var(--space-4) var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  text-wrap: balance;
}

.ping-dot {
  position: relative;
  width: 8px;
  height: 8px;
}

.ping-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-sage);
}

.ping-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--color-sage);
  opacity: 0;
  animation: ping 2s var(--ease-out-expo) infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}


/* ================================================================
   9. GLOW SPHERES (Atmospheric gradient blobs)
   ================================================================ */
.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-peach {
  background: radial-gradient(
    circle,
    hsla(18, 80%, 68%, 0.2) 0%,
    hsla(18, 80%, 68%, 0) 70%
  );
}

.glow-sage {
  background: radial-gradient(
    circle,
    hsla(150, 18%, 55%, 0.15) 0%,
    hsla(150, 18%, 55%, 0) 70%
  );
}


/* ================================================================
   10. SCROLL-DRIVEN REVEAL ANIMATION
   Using animation-timeline: view() — CSS-only, no JS needed
   ================================================================ */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@supports (animation-timeline: view()) {
  .scroll-reveal {
    animation: reveal-up var(--ease-out-expo) both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  .scroll-reveal-scale {
    animation: reveal-scale var(--ease-out-expo) both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

/* Fallback: elements always visible if scroll-timeline not supported */
@supports not (animation-timeline: view()) {
  .scroll-reveal,
  .scroll-reveal-scale {
    opacity: 1;
    transform: none;
  }
}


/* ================================================================
   11. SECTION SPACING
   ================================================================ */
.section {
  position: relative;
  padding-block: var(--section-padding);
  overflow: hidden;
}

.section-alt {
  background-color: var(--color-base-alt);
}

.section-heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 50ch;
}


/* ================================================================
   12. NAVBAR STYLES
   ================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-3) 0;
  transition:
    background-color var(--duration-normal) var(--ease-hover),
    box-shadow var(--duration-normal) var(--ease-hover),
    backdrop-filter var(--duration-normal) var(--ease-hover);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 1px 2px var(--glass-shadow),
    0 4px 12px var(--glass-shadow);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.navbar-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-peach);
  box-shadow: 0 0 12px hsla(18, 80%, 68%, 0.4);
}

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

.navbar-link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color var(--duration-fast) var(--ease-hover);
}

.navbar-link:hover {
  color: var(--color-text-primary);
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}


/* ================================================================
   13. HERO SECTION
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-9);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-heading {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--color-text-primary);
  line-height: 1.08;
}

.hero-heading-accent {
  color: var(--color-peach-dark);
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-7);
  line-height: 1.7;
}

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

.hero-risk-text {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  margin-top: var(--space-3);
}

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

.hero-visual-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-4);
}

.hero-stat-row {
  display: flex;
  gap: var(--space-3);
}

.hero-stat {
  flex: 1;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  background: hsla(40, 30%, 99%, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(40, 20%, 90%, 0.4);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-description {
    margin-inline: auto;
  }
}


/* ================================================================
   14. PROCESS SECTION (Bento Grid)
   ================================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.process-card {
  position: relative;
}

.process-step-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-sage-light);
  line-height: 1;
  margin-bottom: var(--space-3);
}

.process-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.process-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.65;
}

.process-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  margin-bottom: var(--space-4);
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}


/* ================================================================
   15. STATS SECTION
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.stat-card {
  text-align: center;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid hsl(40, 20%, 90%);
}

.stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-peach-dark);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-1);
}

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


/* ================================================================
   16. WHY US — Editorial asymmetric layout
   ================================================================ */
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-9);
  align-items: start;
  margin-top: var(--space-8);
}

.whyus-props {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

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

.whyus-prop-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-peach-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-peach-dark);
}

.whyus-prop-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.whyus-prop-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.whyus-testimonial {
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  position: relative;
}

.whyus-testimonial-quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-text-primary);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.whyus-testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
}

.whyus-testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

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


/* ================================================================
   17. RESULTS SECTION (Checklist)
   ================================================================ */
.results-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-9);
  align-items: start;
  margin-top: var(--space-8);
}

.results-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.results-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.results-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage-dark);
  margin-top: 2px;
}

.results-item-text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.results-summary-card {
  border-radius: var(--radius-xl);
  padding: var(--space-7);
  background: var(--color-sage);
  color: var(--color-text-inverse);
  position: relative;
  overflow: hidden;
}

.results-summary-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.08);
}

.results-summary-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1.1;
}

.results-summary-label {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-top: var(--space-2);
}

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


/* ================================================================
   18. CTA SECTION
   ================================================================ */
.cta-section {
  background:
    linear-gradient(135deg,
      hsl(18, 80%, 68%) 0%,
      hsl(18, 70%, 58%) 40%,
      hsl(150, 22%, 45%) 100%
    );
  color: var(--color-text-inverse);
  text-align: center;
  padding-block: var(--space-12);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: hsla(0, 0%, 100%, 0.06);
  filter: blur(60px);
}

.cta-heading {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-subtext {
  font-size: var(--text-lg);
  opacity: 0.9;
  margin-bottom: var(--space-7);
  max-width: 48ch;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.cta-btn {
  background: var(--color-surface);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-9);
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 1;
  transition:
    transform var(--duration-fast) var(--ease-hover),
    box-shadow var(--duration-normal) var(--ease-hover);
  box-shadow:
    0 2px 8px hsla(220, 15%, 18%, 0.08),
    0 8px 24px hsla(220, 15%, 18%, 0.06);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 4px 12px hsla(220, 15%, 18%, 0.1),
    0 16px 40px hsla(220, 15%, 18%, 0.08),
    0 0 60px hsla(0, 0%, 100%, 0.12);
}

.cta-risk {
  font-size: var(--text-xs);
  opacity: 0.75;
  margin-top: var(--space-4);
  position: relative;
  z-index: 1;
}


/* ================================================================
   19. FOOTER
   ================================================================ */
.footer {
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid hsl(40, 20%, 90%);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

.footer-links {
  display: flex;
  gap: var(--space-5);
}

.footer-link {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  transition: color var(--duration-fast) var(--ease-hover);
}

.footer-link:hover {
  color: var(--color-text-primary);
}


/* ================================================================
   20. PRICING HIGHLIGHT (for Stats / price anchoring)
   ================================================================ */
.price-anchor-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-peach-dark);
  background: var(--color-peach-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
}


/* ================================================================
   21. PREFERS-REDUCED-MOTION
   All animations on transform/opacity only.
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-reveal,
  .scroll-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }

  .ping-dot::after {
    animation: none !important;
  }
}
