/* ============================================
   ASTROCHARTS — Landing Page Styles v2.0
   Mobile-first, Dark Cosmic Premium Theme
   ============================================ */

/* ---- Navbar ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  background: rgba(7, 10, 18, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-base) var(--ease-out);
}
.nav.scrolled {
  background: rgba(7, 10, 18, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--text);
  text-decoration: none;
}
.nav-brand-icon {
  font-size: 1.4rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: color var(--duration-fast);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.nav-lang {
  display: none;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: all var(--duration-fast);
}
.nav-lang:hover {
  background: rgba(255,255,255,0.10);
  color: var(--text);
}
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-lang { display: flex; }
  .nav-hamburger { display: none; }
}

/* ---- Mobile Menu ---- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 10);
  background: rgba(7, 10, 18, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform var(--duration-base) var(--ease-out);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-10);
}
.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  list-style: none;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: var(--text-lg);
  font-weight: var(--weight-medium);
  transition: all var(--duration-fast);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(124, 92, 255, 0.08);
  color: var(--text);
}
.mobile-nav-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-16);
  position: relative;
  overflow: hidden;
}
/* Atmospheric hero glow */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 0%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 40, 120, 0.15) 0%, rgba(60, 25, 90, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  animation: pulse-glow 6s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 50, 100, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.25);
  color: var(--brand-light);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  margin-bottom: var(--space-6);
}
.hero h1 {
  font-size: var(--text-3xl);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  max-width: 560px;
}
.hero-highlight {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}
/* ---- Hero Visual: Cosmic Orb (no phone mockup) ---- */
.hero-visual {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

/* ============================================
   CSS COSMIC ORB — Premium Hero Visual
   No images, pure CSS/SVG. Crisp at any resolution.
   ============================================ */
.hero-orb {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing core sphere */
.hero-orb-core {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(155, 122, 255, 0.50) 0%, rgba(124, 92, 255, 0.25) 40%, transparent 70%),
    radial-gradient(circle at 60% 65%, rgba(212, 160, 74, 0.20) 0%, transparent 55%),
    radial-gradient(circle, rgba(88, 50, 140, 0.80) 0%, rgba(40, 20, 80, 0.40) 60%, transparent 100%);
  box-shadow:
    0 0 60px rgba(124, 92, 255, 0.35),
    0 0 120px rgba(88, 40, 120, 0.15),
    inset 0 -20px 40px rgba(0, 0, 0, 0.30);
  animation: orb-pulse 4s ease-in-out infinite;
}

/* Orbital rings */
.hero-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.hero-orb-ring-1 {
  width: 220px;
  height: 220px;
  border-color: rgba(124, 92, 255, 0.25);
  animation: spin-slow 60s linear infinite;
}
.hero-orb-ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(212, 160, 74, 0.15);
  animation: spin-slow 90s linear infinite reverse;
}
.hero-orb-ring-3 {
  width: 380px;
  height: 380px;
  border-color: rgba(124, 92, 255, 0.10);
  border-style: dashed;
  animation: spin-slow 120s linear infinite;
}

/* Small orbit dots */
.hero-orb-ring-1::before,
.hero-orb-ring-2::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-orb-ring-1::before {
  background: var(--brand-light);
  box-shadow: 0 0 10px var(--brand-light);
}
.hero-orb-ring-2::before {
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

/* Zodiac symbol orbit */
.hero-zodiac-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  animation: spin-slow 180s linear infinite reverse;
}
.hero-z {
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(200, 180, 255, 0.55);
  text-shadow: 0 0 8px rgba(124, 92, 255, 0.20);
  left: 50%;
  top: 50%;
  /* Each symbol gets placed on a circle: angle = var(--i) * 30deg */
  transform: rotate(calc(var(--i) * 30deg)) translateY(-170px) rotate(calc(var(--i) * -30deg));
  transition: color 0.3s, text-shadow 0.3s;
}

/* Center star */
.hero-orb-star {
  position: absolute;
  font-size: 1.8rem;
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(212, 160, 74, 0.60);
  z-index: 2;
  animation: orb-star-pulse 3s ease-in-out infinite;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 60px rgba(124,92,255,0.35), 0 0 120px rgba(88,40,120,0.15), inset 0 -20px 40px rgba(0,0,0,0.30); }
  50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(124,92,255,0.45), 0 0 160px rgba(88,40,120,0.20), inset 0 -20px 40px rgba(0,0,0,0.30); }
}
@keyframes orb-star-pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Responsive Hero Visual ---- */
@media (min-width: 768px) {
  .hero h1 { font-size: var(--text-4xl); }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { display: flex; }
  .hero-orb { width: 360px; height: 360px; }
  .hero-orb-core { width: 120px; height: 120px; }
  .hero-orb-ring-1 { width: 200px; height: 200px; }
  .hero-orb-ring-2 { width: 270px; height: 270px; }
  .hero-orb-ring-3 { width: 340px; height: 340px; }
  .hero-zodiac-orbit { width: 310px; height: 310px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-155px) rotate(calc(var(--i) * -30deg)); }
}
@media (min-width: 1024px) {
  .hero h1 { font-size: var(--text-5xl); }
  .hero-orb { width: 420px; height: 420px; }
  .hero-orb-core { width: 150px; height: 150px; }
  .hero-orb-ring-1 { width: 240px; height: 240px; }
  .hero-orb-ring-2 { width: 320px; height: 320px; }
  .hero-orb-ring-3 { width: 400px; height: 400px; }
  .hero-zodiac-orbit { width: 360px; height: 360px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-180px) rotate(calc(var(--i) * -30deg)); }
}
@media (min-width: 1280px) {
  .hero-orb { width: 460px; height: 460px; }
  .hero-orb-core { width: 160px; height: 160px; }
  .hero-orb-ring-1 { width: 260px; height: 260px; }
  .hero-orb-ring-2 { width: 350px; height: 350px; }
  .hero-orb-ring-3 { width: 440px; height: 440px; }
  .hero-zodiac-orbit { width: 400px; height: 400px; }
  .hero-z { transform: rotate(calc(var(--i) * 30deg)) translateY(-200px) rotate(calc(var(--i) * -30deg)); }
}

/* ---- Features Section ---- */
.features {
  padding: var(--space-24) 0;
  position: relative;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: var(--space-8);
  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: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity var(--duration-base);
}
.feature-card:hover {
  border-color: rgba(123, 63, 190, 0.40);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: var(--space-5);
}
.feature-icon.love    { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.feature-icon.career  { background: rgba(59, 130, 246, 0.12); color: #3b82f6; }
.feature-icon.money   { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.feature-icon.spirit  { background: rgba(168, 85, 247, 0.12); color: #a855f7; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-3);
}
.feature-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-5);
}
.feature-credit {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--green);
  background: rgba(74, 222, 128, 0.10);
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Chat / AI Copilot Section ---- */
.chat-section {
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}
.chat-section::before {
  content: '';
  position: absolute;
  left: -15%;
  top: 20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 74, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.chat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
.chat-content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
}
.chat-content p {
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
  max-width: 500px;
}
.chat-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.chat-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.chat-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.chat-feature-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.chat-feature-text strong {
  color: var(--text);
}
.chat-phones {
  display: none;
  position: relative;
  justify-content: center;
  gap: var(--space-4);
}
.chat-phone {
  width: 220px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: var(--space-5);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.chat-phone:nth-child(2) {
  transform: translateY(40px);
}
.chat-phone-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-4);
}
.chat-phone-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.chat-phone-info {
  flex: 1;
}
.chat-phone-name {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
}
.chat-phone-status {
  font-size: var(--text-xs);
  color: var(--green);
}
.chat-msg {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  max-width: 90%;
}
.chat-msg.ai {
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.15);
  color: var(--text-muted);
}
.chat-msg.user {
  background: rgba(212, 160, 74, 0.10);
  border: 1px solid rgba(212, 160, 74, 0.12);
  color: var(--text-muted);
  margin-left: auto;
  text-align: right;
}

@media (min-width: 768px) {
  .chat-grid { grid-template-columns: 1fr 1fr; }
  .chat-phones { display: flex; }
}

/* ---- Testimonials Section ---- */
.testimonials {
  padding: var(--space-24) 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  padding: var(--space-8);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FFD700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}
.testimonial-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: white;
}
.testimonial-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- CTA / Premium Section ---- */
.cta-section {
  padding: var(--space-24) 0;
}
.cta-box {
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12) 0%, rgba(212, 160, 74, 0.08) 100%);
  border: 1px solid rgba(124, 92, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}
.cta-box p {
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

/* ---- Footer ---- */
.site-footer {
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}
.footer-brand-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  max-width: 300px;
  line-height: var(--leading-relaxed);
  margin-top: var(--space-4);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: all var(--duration-fast);
}
.footer-social a:hover {
  background: rgba(124, 92, 255, 0.12);
  border-color: var(--brand);
  color: var(--brand-light);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  color: var(--text-muted);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}
.footer-col a:hover {
  color: var(--text);
}
.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  text-align: center;
}
.footer-copyright {
  font-size: var(--text-xs);
  color: var(--text-subtle);
}
.footer-disclaimer {
  font-size: var(--text-xs);
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ---- How it Works Section ---- */
.how-it-works {
  padding: var(--space-24) 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}
.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--text-on-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  flex-shrink: 0;
  box-shadow: var(--gold-glow);
}
.step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.step-content p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .step { flex-direction: column; align-items: center; text-align: center; }
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
