/* ============================================================
   ANAVERSE — Master Design System & Styling (Ported from YEP 3.0)
   Theme: Warm Paper · Navy · Magenta · Orange
   Typography: Playfair Display / Plus Jakarta Sans / Space Grotesk
   ============================================================ */

:root {
  /* Palette */
  --cream:        #F2EDE3;
  --cream-light:  #FAF7F1;
  --cream-mid:    #EDE5D8;
  --navy:         #2D3178;
  --navy-dark:    #1A1D50;
  --navy-mid:     #3D4399;
  --navy-faint:   #ECEDF8;
  --navy-hover:   #232654;
  --magenta:      #A95C96;
  --magenta-deep: #8B3A7A;
  --magenta-faint:#F7EEF5;
  --orange:       #E87340;
  --orange-dark:  #C85F2A;
  --orange-faint: #FDF0E8;
  --ink:          #1A1B2E;
  --text-main:    #1A1B2E;
  --text-muted:   #6B6680;
  --muted:        #6B6680;
  --light:        #A09AB8;
  --border:       rgba(45,49,120,0.12);
  --border-light: rgba(45,49,120,0.07);
  --surface:      #FFFFFF;

  /* Typography */
  --f-serif:   'Playfair Display', Georgia, serif;
  --f-headline: 'Playfair Display', Georgia, serif;
  --f-ui:      'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --f-label:   'Space Grotesk', system-ui, sans-serif;

  /* Radii */
  --r-sm:  10px;  --r-md: 16px;  --r-lg: 24px;
  --r-xl:  32px;  --r-pill: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(26,27,46,0.06);
  --shadow-sm: 0 4px 14px rgba(26,27,46,0.08);
  --shadow-md: 0 10px 28px rgba(26,27,46,0.10);
  --shadow-lg: 0 20px 48px rgba(26,27,46,0.13);
  --shadow-orange: 0 8px 24px rgba(232,115,64,0.35);

  --nav-h: 84px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -ms-overflow-style: none; scrollbar-width: none; }
::-webkit-scrollbar { display: none; }

body {
  font-family: var(--f-ui);
  background-color: var(--cream-light);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }

.page-wrapper { min-height: 100vh; width: 100%; overflow-x: clip; }

/* Background Utilities */
.bg-white { background-color: #FFFFFF; }
.bg-cream { background-color: var(--cream-light); }
.bg-cream-light { background-color: var(--cream-light); }
.bg-navy-faint { background-color: rgba(45, 49, 120, 0.03); }
.bg-paper { 
  background-color: var(--cream-light);
  background-image: url('../assets/images/bg.png'); 
  background-size: cover; 
  background-position: center; 
}

/* Layout Containers */
.wrap { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; background: var(--cream-light); position: relative; }
.section-sm { padding: 40px 0; background: var(--cream-light); position: relative; }

/* FLOATING PILL NAVBAR */
.nav-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 12px 20px;
  height: var(--nav-h);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1260px; margin: 0 auto;
  background: rgba(250,247,241,0.96);
  border: 1.5px solid rgba(45,49,120,0.13);
  border-radius: var(--r-pill);
  padding: 10px 24px;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(26,27,46,0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease;
}
.nav-bar.scrolled .nav-inner {
  box-shadow: 0 6px 28px rgba(26,27,46,0.12), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; flex-shrink: 0; text-decoration: none;
}
.nav-logo-name {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-mid);
  margin-top: 2px;
  display: block;
}

.nav-center {
  display: flex; align-items: center;
  flex: 1; justify-content: center; gap: 0;
  padding: 0 8px;
}
.nav-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--light); flex-shrink: 0; margin: 0 10px;
}
.nav-link {
  font-family: var(--f-ui); font-size: 0.88rem; font-weight: 500;
  color: var(--muted); background: none; border: none;
  padding: 4px 4px; cursor: pointer;
  transition: color 0.18s; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.nav-link:hover { color: var(--navy-dark); }
.nav-link.active { color: var(--navy-dark); font-weight: 700; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* 100% IDENTICAL UNIVERSAL NAVBAR REGISTER BUTTON */
.nav-reg-btn {
  background: var(--orange) !important;
  color: #FFFFFF !important;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 9px 22px !important;
  border-radius: var(--r-pill) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(232, 115, 64, 0.35) !important;
  transition: all 0.22s ease !important;
  border: none !important;
  cursor: pointer;
}
.nav-reg-btn:hover {
  background: var(--orange-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 115, 64, 0.45) !important;
}

.hamburger { 
  display: none; 
  background: none; 
  border: none; 
  color: var(--navy-dark); 
  padding: 6px; 
  cursor: pointer; 
}

/* UNIVERSAL RESPONSIVE BREAKPOINT FOR ALL PAGES */
@media (max-width: 1080px) {
  .nav-bar {
    padding: 8px 12px;
  }
  .nav-inner {
    padding: 8px 16px;
    gap: 12px;
  }
  .nav-center { 
    display: none !important; 
  }
  .nav-actions .nav-reg-btn {
    display: none !important;
  }
  .hamburger { 
    display: flex !important; 
    align-items: center; 
    justify-content: center; 
    z-index: 1001; 
    color: var(--navy-dark);
    padding: 8px;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .nav-logo-sub {
    display: none !important;
  }
}

@media (max-width: 440px) {
  .nav-logo-name {
    font-size: 1.15rem;
  }
  .nav-logo img {
    height: 30px !important;
  }
  .nav-inner {
    padding: 6px 12px;
  }
}

.mobile-menu {
  position: fixed; top: calc(var(--nav-h) + 4px); left: 12px; right: 12px; z-index: 999;
  background: rgba(250,247,241,0.98);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: none; flex-direction: column;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.mobile-menu.active { display: flex; }
.mobile-menu .nav-link {
  padding: 12px 0; font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
}

/* GENERAL BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-ui); font-weight: 600; font-size: 0.92rem;
  padding: 12px 26px; border-radius: var(--r-pill); border: none;
  transition: all 0.22s ease; white-space: nowrap; cursor: pointer; text-decoration: none;
}
.btn-primary {
  background: var(--navy-dark); color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--navy-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: #FFFFFF; color: var(--navy-dark);
  border: 1.5px solid rgba(45,49,120,0.2);
}
.btn-outline:hover { border-color: var(--navy-dark); background: var(--navy-faint); transform: translateY(-1px); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

.btn-orange {
  background: var(--orange); color: #fff;
  padding: 14px 34px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 1rem; border: none; cursor: pointer;
  box-shadow: var(--shadow-orange); transition: all 0.22s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
}
.btn-orange:hover {
  background: var(--orange-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 14px 32px rgba(232,115,64,0.45);
}

/* HERO SECTIONS */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 40px;
  background-color: var(--cream-light);
  background-image: url('../assets/images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.subpage-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 28px) 2rem 40px 2rem;
  color: var(--navy-dark);
  background-color: var(--cream-light);
  background-image: url('../assets/images/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  margin: 0;
}

.subpage-hero .hero-content {
  max-width: 840px;
  padding: 10px;
}

.subpage-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.16;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.subpage-hero-sub {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.65;
  color: var(--muted);
}

.hero-editorial-badge {
  font-family: var(--f-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-dark);
  border: 1.5px solid rgba(45,49,120,0.22);
  padding: 6px 22px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.2rem;
  background: #FFFFFF;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(26,27,46,0.06);
}

.smooth-section {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.02);
  width: 100%;
}

.hero-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 10px;
  position: relative;
  z-index: 5;
}

.badge {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(45,49,120,0.18);
  border-radius: var(--r-pill);
  padding: 8px 22px;
  font-family: var(--f-label); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--navy-dark);
  background: rgba(250,247,241,0.85);
  backdrop-filter: blur(6px);
  margin-bottom: 20px;
}

/* DUAL COLOR TYPOGRAPHY UTILITIES */
.line-magenta {
  color: var(--magenta-deep) !important;
  font-family: var(--f-headline) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  display: inline-block;
}

.line-navy {
  color: var(--navy-dark) !important;
  font-family: var(--f-serif) !important;
  font-style: normal !important;
  font-weight: 700 !important;
  display: inline-block;
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 4.3vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--navy-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vh, 1.1rem);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 540px;
}

/* TRANSPARENT HERO ILLUSTRATIONS (1.25x Scaled with Exact 10px Text Gap & Zero Overlap) */
.illus-card {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
  transition: all 0.3s ease;
}
.illus-card img {
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  display: block;
}
.illus-bl { 
  top: 52%;
  transform: translateY(-45%);
  left: -10px; 
  width: clamp(320px, 28vw, 480px); 
  height: auto; 
}
.illus-br { 
  top: 52%;
  transform: translateY(-45%);
  right: -10px; 
  width: clamp(320px, 28vw, 480px); 
  height: auto; 
}

@media (max-width: 1280px) {
  .illus-bl { left: -20px; width: clamp(260px, 25vw, 380px); }
  .illus-br { right: -20px; width: clamp(260px, 25vw, 380px); }
}
@media (max-width: 980px) {
  .illus-bl, .illus-br { display: none; }
}

/* POWERFUL NAVY STATS STRIP */
.stats-bar {
  background: linear-gradient(135deg, #1A1D50 0%, #121438 100%);
  color: #fff;
  padding: 44px 0;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.stat-item {
  text-align: center;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 115, 64, 0.4);
}
.stat-num {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #FFAE73 0%, #E87340 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(232, 115, 64, 0.3));
}
.stat-lbl {
  font-family: var(--f-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { padding: 18px 12px; }
}

/* SECTION HEADERS & CONTENT */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-title { font-family: var(--f-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--navy-dark); line-height: 1.15; margin-bottom: 12px; font-weight: 700; letter-spacing: -0.01em; }
.section-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 620px; margin: 0 auto; }

/* BENTO GRID */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-span-2 { grid-column: span 2; }
.bento-card {
  background: rgba(250,247,241,0.92);
  border: 1.5px solid rgba(45,49,120,0.12);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 4px 18px rgba(26,27,46,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(26,27,46,0.10); }
.bento-card-title { font-family: var(--f-serif); font-size: 1.35rem; color: var(--navy-dark); margin-bottom: 8px; }
.bento-card-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* FOOTER LOGO CONTAINER */
.footer-logo-box {
  background: #FFFFFF;
  padding: 6px 10px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* FOOTER */
.footer { 
  background: var(--navy-dark); 
  color: rgba(255,255,255,0.7); 
  padding: 60px 0 30px 0; 
  border-top-left-radius: 40px; 
  border-top-right-radius: 40px; 
  margin-top: 40px; 
}
.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 40px; 
}
.footer-h { 
  font-family: var(--f-label); 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: #fff; 
  margin-bottom: 20px; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
}
.footer-link { 
  color: rgba(255,255,255,0.6); 
  text-decoration: none; 
  display: block; 
  margin-bottom: 12px; 
  font-size: 0.9rem; 
  transition: color 0.2s; 
}
.footer-link:hover { 
  color: #fff; 
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 0 24px 0;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    margin-bottom: 32px; 
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

/* SMOOTH SCROLLING & CUSTOM REVEAL ANIMATIONS */
html {
  scroll-behavior: smooth;
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}

/* MINIMALISTIC EDITORIAL WELCOME SPLASH OVERLAY (WARM CREAM PALETTE) */
.cinematic-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--cream-light);
  background-image: radial-gradient(circle at 50% 45%, rgba(255, 253, 249, 0.98) 0%, #FAF7F2 100%), url('../assets/images/bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1), transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.cinematic-preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.preloader-content {
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.preloader-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.preloader-logo {
  height: 160px;
  width: auto;
  opacity: 0;
  transform: scale(2.4);
  filter: drop-shadow(0 18px 36px rgba(26, 27, 78, 0.15));
  animation: logoOversizedPop 3.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.preloader-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, rgba(232, 115, 64, 0.22) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(32px);
  animation: haloBreath 3.2s ease-in-out infinite;
}

.preloader-text-wrap {
  opacity: 0;
  transform: translateY(24px);
  animation: textEditorialReveal 1.8s cubic-bezier(0.19, 1, 0.22, 1) 2.9s forwards;
}

.preloader-badge {
  display: inline-block;
  padding: 7px 22px;
  border-radius: 50px;
  background: rgba(232, 115, 64, 0.08);
  border: 1.5px solid rgba(232, 115, 64, 0.35);
  color: #D85A20;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.preloader-welcome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.12;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.preloader-brand-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 45%, #E87340 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preloader-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--navy-dark);
  text-transform: uppercase;
}

@keyframes logoOversizedPop {
  0% { 
    opacity: 0; 
    transform: scale(2.4); 
    filter: blur(18px); 
  }
  35% { 
    opacity: 1; 
    transform: scale(1.95); 
    filter: blur(0px); 
  }
  100% { 
    opacity: 1; 
    transform: scale(1.0); 
    filter: blur(0px); 
  }
}

@keyframes textEditorialReveal {
  0% { 
    opacity: 0; 
    transform: translateY(24px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes haloBreath {
  0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.22); }
}

/* PREMIUM WOW EDITORIAL CLOSING CTA CARD */
.editorial-cta-card {
  background: linear-gradient(135deg, #0D0E29 0%, #1A1B4E 60%, #2A1B4E 100%);
  border-radius: 40px;
  padding: 5.5rem 3.5rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(232, 115, 64, 0.3);
  box-shadow: 0 24px 60px rgba(13, 14, 41, 0.4);
}

.editorial-cta-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(232,115,64,0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(169,92,150,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.editorial-cta-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.editorial-cta-title {
  position: relative;
  z-index: 2;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.18;
  margin-bottom: 1.5rem;
  font-weight: 700;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-gold-gradient {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #E87340 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editorial-cta-desc {
  position: relative;
  z-index: 2;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  max-width: 780px;
  margin: 0 auto 2.8rem auto;
}

.editorial-cta-actions {
  position: relative;
  z-index: 2;
}

.btn-orange-glow {
  background: linear-gradient(135deg, #E87340 0%, #D85A20 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(232, 115, 64, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-orange-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(232, 115, 64, 0.65);
  color: #fff;
}