/* ============================================
   AURA READS — Design System & Styles
   ============================================ */

/* --- CSS Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Design Tokens --- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-card: #ffffff;
  --bg-card-hover: #fafafa;
  --text-primary: #09090b;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --gold: #f97316;
  --gold-light: #fb923c;
  --gold-dark: #ea580c;
    --accent: #f97316;
  --amber: #f97316;
  --accent-glow: rgba(249, 115, 22, 0.15);
  --glass-border: #e4e4e7;
  --glass-border-hover: #f97316;

  /* Typography */
  --font-heading: 'Bricolage Grotesque', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale (fluid) */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
  --text-lg: clamp(1.05rem, 1rem + 0.4vw, 1.2rem);
  --text-xl: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  --text-3xl: clamp(1.8rem, 1.5rem + 1.2vw, 2.5rem);
  --text-4xl: clamp(2.2rem, 1.8rem + 1.8vw, 3.2rem);
  --text-5xl: clamp(2.8rem, 2.2rem + 2.5vw, 4.2rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
  --shadow-card: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;
}

/* --- Global --- */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text-primary);
  background-color: #ffffff;
  overflow-x: hidden;
  position: relative;
}

/* Grain / noise overlay removed for lightning fast performance */

/* --- Reading Progress Bar --- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10001;
  transition: width 100ms linear;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: var(--space-md) 0;
  transition: background var(--duration-base) var(--ease-out),
              padding var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-sm) 0;
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav__logo span {
  color: var(--gold);
}

/* ============================================
   PREMIUM SVG LOGO STYLE
   ============================================ */
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Logo Animations */
.logo-aura-outer {
  transform-origin: center;
  animation: rotateAura 25s linear infinite;
}

.logo-aura-glow {
  transform-origin: center;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes rotateAura {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Hover dynamic animations */
.nav__logo:hover .logo-aura-outer,
.library-nav__logo:hover .logo-aura-outer,
.back-link:hover .logo-aura-outer {
  animation: rotateAura 6s linear infinite;
}

.nav__logo:hover .logo-aura-glow,
.library-nav__logo:hover .logo-aura-glow,
.back-link:hover .logo-aura-glow {
  filter: drop-shadow(0 0 4px var(--gold));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration-base) var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10002;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-fast);
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- CTA Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  
}

.btn-primary:hover {
  box-shadow: 0 4px 14px 0 rgba(249, 115, 22, 0.39);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.btn-nav {
  padding: 8px 22px;
  font-size: var(--text-xs);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: var(--space-5xl) var(--space-lg) var(--space-4xl);
  overflow: hidden;
}

/* Animated gradient glow behind hero */
.hero__glow { display: none;
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hero-pulse 6s ease-in-out infinite;
  pointer-events: none;
  will-change: transform, opacity;
}

.hero__glow::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 145, 58, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: hero-pulse-2 8s ease-in-out infinite 2s;
}

@keyframes hero-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

@keyframes hero-pulse-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Floating particles */
.hero__particles { display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 12s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(4) { left: 55%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 70%; animation-delay: 3s; animation-duration: 12s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(7) { left: 15%; animation-delay: 6s; animation-duration: 11s; }
.particle:nth-child(8) { left: 60%; animation-delay: 7s; animation-duration: 13s; }

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.1; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__headline {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-down 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
}

@keyframes bounce-down {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTIONS — Generic
   ============================================ */
section {
  padding: var(--space-5xl) 0;
  position: relative;
}

.section-center {
  text-align: center;
}

.section-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  border-top: 1px solid var(--glass-border);
}

.problem__text {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.9;
}

.problem__text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   FEATURES / WHAT MAKES US DIFFERENT
   ============================================ */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold);
  font-size: 1.3rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   QUOTES SECTION
   ============================================ */
.quotes {
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-2xl) var(--space-xl);
  
  position: relative;
}

.quote-card__mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
}

.quote-card__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.quote-card__author {
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  position: relative;
}

/* Connecting line between steps */
.steps__grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--glass-border), var(--gold), var(--glass-border));
  opacity: 0.1;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--gold);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.step-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FREE SAMPLE SECTION
   ============================================ */
.sample {
  border-top: 1px solid var(--glass-border);
}

.sample__card {
  max-width: 680px;
  margin: var(--space-2xl) auto 0;
  background: var(--bg-card);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--duration-base) var(--ease-out);
}

.sample__card:hover {
  border-color: var(--glass-border-hover);
}

/* Subtle top shine */
.sample__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sample__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249, 115, 22, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.sample__book-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.sample__book-author {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.sample__teaser {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-2xl);
  line-height: 1.7;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-out);
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

/* ============================================
   LIBRARY PREVIEW SECTION
   ============================================ */
.library-preview {
  border-top: 1px solid var(--glass-border);
  background: var(--bg-primary);
}

.library-preview__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  max-width: 800px;
  margin: var(--space-2xl) auto;
}

.preview-item {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--duration-base) var(--ease-out);
}

.preview-item:hover {
  border-color: rgba(249, 115, 22, 0.3);
  color: var(--text-primary);
}

.preview-icon {
  font-size: 0.8rem;
  opacity: 0.7;
}

.library-preview__cta {
  margin-top: var(--space-2xl);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
  border-top: 1px solid var(--glass-border);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
}

.pricing-card--featured {
  border-color: var(--gold);
  background: var(--bg-primary)5eb;
  transform: scale(1.04);
}

.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

/* Featured card top glow */
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: var(--space-xl);
  background: var(--gold);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.pricing-card__price span {
  font-size: var(--text-base);
  font-family: var(--font-body);
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card__local {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.pricing-card__note {
  font-size: var(--text-sm);
  color: var(--gold);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.pricing-card .btn {
  width: 100%;
}

.pricing__footer {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  border-top: 1px solid var(--glass-border);
}

.about__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: #ffffff;
  font-weight: 700;
}

.about__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

.about__bio {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: var(--space-lg);
}

.about__bio + .about__bio {
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  border-top: 1px solid var(--glass-border);
}

.faq__list {
  max-width: 720px;
  margin: var(--space-2xl) auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--glass-border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-lg) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  transition: color var(--duration-fast);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  transition: transform var(--duration-base) var(--ease-out);
}

.faq__icon::before {
  top: 50%;
  left: 2px;
  right: 2px;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq__icon::after {
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq__item.open .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-base) var(--ease-out),
              padding var(--duration-base) var(--ease-out);
}

.faq__answer-inner {
  padding-bottom: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: var(--space-3xl) 0 calc(var(--space-2xl) + 100px);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__link svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .features__grid,
  .pricing__grid,
  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .steps__grid::before {
    display: none;
  }

  .quotes__grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2xl);
    transition: right var(--duration-base) var(--ease-out);
    border-left: 1px solid var(--glass-border);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__link {
    font-size: var(--text-lg);
  }

  .hero__headline {
    font-size: var(--text-4xl);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  section {
    padding: var(--space-4xl) 0;
  }

  .sample__card {
    padding: var(--space-2xl);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero__headline {
    font-size: var(--text-3xl);
  }

  .section-title {
    font-size: var(--text-2xl);
  }
}

/* ============================================
   UTILITY ANIMATIONS
   ============================================ */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.15); }
  50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.3); }
}

/* ============================================
   LOCAL BANK TRANSFER STEPS
   ============================================ */
.pricing-steps {
  max-width: 680px;
  margin: 3rem auto 2rem;
  background: #f4f4f5; color: #09090b;
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
}

.pricing-steps:hover {
  border-color: var(--glass-border-hover);
}

.steps-heading {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-item-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.step-badge-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.15);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   NEW CONVERSION OPTIMIZATIONS
   ============================================ */

/* Pulse Animation */
@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.pulse-anim {
  animation: pulse-gold 2s infinite;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 12px var(--space-lg);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: 1.2;
}

.sticky-cta__sub {
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

@media (max-width: 600px) {
  .sticky-cta__title { font-size: var(--text-sm); }
  .sticky-cta__sub { font-size: 10px; }
  .btn-sm { padding: 6px 12px; }
}

/* Value Compare Hover Effects */
.compare-card.aura-way {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.compare-card.aura-way:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
}

/* ============================================
   PROFILE MODAL (Premium Auth)
   ============================================ */
.profile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeInOverlay 0.3s ease;
}

.profile-overlay.visible {
  display: flex;
}

.profile-modal {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  max-width: 400px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(249, 115, 22, 0.05);
  text-align: center;
  animation: slideUpModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(9, 9, 11, 0.04);
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(9, 9, 11, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-modal__close:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
}

.profile-modal__close svg {
  width: 18px;
  height: 18px;
}

.profile-modal__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.profile-card {
  background: rgba(9, 9, 11, 0.04);
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.8;
}

.profile-card__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 9999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.profile-card__email {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  word-break: break-all;
}

.profile-card__date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.access-card {
  background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 100%);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.access-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.access-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.access-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.access-card__manage {
  display: block;
  text-align: center;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.access-card__manage:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.profile-modal__signout {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-modal__signout:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
}

.library-nav__profile {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.library-nav__profile:hover {
  background: rgba(249, 115, 22, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
}

/* ──────────────────────────────────────────────────────────
   NEWSLETTER SECTION
   ────────────────────────────────────────────────────────── */
.newsletter {
  padding: 5rem 0;
}

.newsletter__inner {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-elevated);
  position: relative;
  overflow: hidden;
}

.newsletter__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.newsletter__title {
  font-family: var(--font-heading), serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.newsletter__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

.newsletter__form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body), sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter__input::placeholder {
  color: var(--text-muted);
}

.newsletter__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--accent-glow);
  background: var(--bg-primary);
}

.newsletter__btn {
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}

.newsletter__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.newsletter__message {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.newsletter__message.success {
  color: #10b981;
}

@media (max-width: 600px) {
  .newsletter__form {
    flex-direction: column;
  }
  .newsletter__inner {
    padding: 3rem 1.5rem;
  }
}
