/* ==========================================================================
   Aurelius — Premium Cinematic Landing Page Stylesheet
   ========================================================================== */

:root {
  /* Colors */
  --color-bg-dark: #080503;
  --color-text-white: #ffffff;
  --color-text-muted: rgba(245, 235, 225, 0.76);
  --color-text-subtle: rgba(255, 255, 255, 0.58);
  --color-amber-primary: #d88e34;
  --color-amber-glow: rgba(216, 142, 52, 0.35);
  
  /* Glass Surfaces */
  --nav-bg: rgba(26, 19, 13, 0.52);
  --nav-border: rgba(255, 255, 255, 0.11);
  --badge-bg: rgba(45, 30, 18, 0.45);
  --badge-border: rgba(255, 210, 140, 0.22);
  
  /* Buttons */
  --btn-primary-bg: rgba(168, 108, 46, 0.32);
  --btn-primary-border: rgba(245, 175, 85, 0.45);
  --btn-try-bg: rgba(255, 255, 255, 0.08);
  --btn-try-border: rgba(255, 255, 255, 0.16);

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Spacing & Transitions */
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--color-bg-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px 24px 34px 24px;
}

/* Background Animated Video */
.video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
  display: block;
}

/* Cinematic subtle tonal balancing overlay */
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(10, 6, 3, 0.0) 0%,
    rgba(10, 6, 3, 0.16) 65%,
    rgba(8, 5, 3, 0.45) 100%
  );
  pointer-events: none;
}

/* ==========================================================================
   Floating Navigation Bar (Fixed on Scroll)
   ========================================================================== */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: rgba(20, 14, 10, 0.65);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 6.5px 8px 6.5px 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.14);
  max-width: 860px;
  width: calc(100% - 48px);
  animation: navFadeDown 0.9s var(--ease-cinematic) forwards;
  transition: all 0.3s ease;
}

.floating-nav.scrolled {
  background: rgba(15, 10, 7, 0.85);
  border-color: rgba(235, 170, 75, 0.22);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(216, 142, 52, 0.15);
}

/* Brand styling */
.nav-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--color-text-white);
}

.brand-icon {
  width: 20px;
  height: 17px;
  color: #f1e9dd;
}

.brand-name {
  font-size: 0.93rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  color: #ffffff;
}

/* Center navigation links */
.nav-center-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  font-size: 0.83rem;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  letter-spacing: -0.008em;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
}

/* "Try for free" CTA in nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-try-free {
  font-size: 0.82rem;
  font-weight: 500;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 18px;
  border-radius: 9999px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.22s ease;
}

.btn-try-free:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.22);
}

/* Mobile hamburger button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}

.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero Content Body
   ========================================================================== */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: auto 0 0 0;
  animation: heroContentFadeUp 1.1s var(--ease-cinematic) 0.1s both;
}

/* Announcement Pill */
.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(36, 24, 15, 0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 210, 140, 0.22);
  border-radius: 9999px;
  padding: 3.5px 13px 3.5px 4.5px;
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.28s ease;
  cursor: pointer;
}

.announcement-badge:hover {
  background: rgba(50, 34, 20, 0.65);
  border-color: rgba(255, 215, 150, 0.38);
  transform: translateY(-1px);
}

.badge-tag {
  background: linear-gradient(135deg, #d48a33, #b4671a);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2.5px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(212, 138, 51, 0.35);
  letter-spacing: 0.01em;
}

.badge-text {
  font-size: 0.79rem;
  font-weight: 450;
  color: rgba(255, 246, 238, 0.9);
  letter-spacing: -0.01em;
}

.badge-arrow {
  width: 11px;
  height: 11px;
  color: rgba(255, 245, 235, 0.75);
  transition: transform 0.2s ease;
}

.announcement-badge:hover .badge-arrow {
  transform: translateX(2px);
  color: #ffffff;
}

/* Main Hero Heading */
.hero-heading {
  font-size: clamp(2.3rem, 4.3vw, 3.75rem);
  font-weight: 520;
  line-height: 1.13;
  letter-spacing: -0.03em;
  color: var(--color-text-white);
  max-width: 930px;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Supporting Paragraph */
.hero-description {
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 400;
  line-height: 1.58;
  color: rgba(242, 234, 224, 0.74);
  max-width: 650px;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* Action CTA Area */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 58px;
}

/* Primary Button: Start Your Journey */
.btn-primary-journey {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  font-size: 0.86rem;
  font-weight: 480;
  color: #ffffff;
  background: rgba(162, 102, 42, 0.3);
  border: 1px solid rgba(240, 172, 82, 0.42);
  border-radius: 9999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 
    0 4px 20px rgba(180, 100, 30, 0.22),
    inset 0 1px 1px rgba(255, 232, 185, 0.32);
  transition: all 0.26s cubic-bezier(0.2, 0.8, 0.2, 1);
  letter-spacing: -0.005em;
}

.btn-primary-journey:hover {
  background: rgba(186, 120, 52, 0.44);
  border-color: rgba(255, 195, 110, 0.62);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 26px rgba(200, 115, 35, 0.38),
    inset 0 1px 2px rgba(255, 245, 215, 0.48);
}

.btn-primary-journey:active {
  transform: translateY(0);
}

/* Secondary CTA: See How It Works */
.cta-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.84);
  padding: 10px 4px;
  transition: all 0.22s ease;
  letter-spacing: -0.005em;
}

.secondary-arrow {
  width: 13px;
  height: 13px;
  color: rgba(255, 255, 255, 0.78);
  transition: transform 0.22s ease, color 0.22s ease;
}

.cta-secondary-link:hover {
  color: #ffffff;
}

.cta-secondary-link:hover .secondary-arrow {
  transform: translateX(3px);
  color: #ffffff;
}

/* ==========================================================================
   Lower Trust & Brand Logos Section
   ========================================================================== */
.trust-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10px;
}

.trust-title {
  font-size: 0.84rem;
  font-weight: 450;
  color: var(--color-text-subtle);
  letter-spacing: 0.005em;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.trust-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 980px;
  padding: 0 16px;
  gap: 36px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.brand-svg {
  height: 24px;
  width: auto;
  color: #ffffff;
  display: block;
}

/* Specific logo sizing adjustments */
.svg-dropbox {
  height: 23px;
}

.svg-hubspot {
  height: 24px;
}

.svg-logoipsum-1 {
  height: 22px;
}

.svg-logoipsum-2 {
  height: 22px;
}

.svg-logoipsum-3 {
  height: 22px;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */
@keyframes navFadeDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -16px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroContentFadeUp {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .floating-nav {
    gap: 20px;
    padding: 7px 8px 7px 18px;
    width: 94%;
    max-width: 760px;
  }

  .nav-center-links {
    gap: 18px;
  }

  .hero-container {
    min-height: 680px;
    padding: 20px 20px 30px 20px;
  }

  .hero-cta-group {
    margin-bottom: 45px;
  }

  .trust-logos-row {
    gap: 24px;
    max-width: 800px;
  }

  .brand-svg {
    height: 20px;
  }
}

/* Mobile & Small Screens (max-width: 768px) */
@media (max-width: 768px) {
  .hero-container {
    height: 100vh;
    min-height: 620px;
    padding: 16px 16px 24px 16px;
    justify-content: space-between;
  }

  .floating-nav {
    width: 100%;
    border-radius: 24px;
    padding: 10px 16px;
    margin-top: 0;
  }

  /* Hamburger toggle */
  .mobile-toggle {
    display: flex;
  }

  /* Mobile menu dropdown */
  .nav-center-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(22, 15, 10, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--nav-border);
    border-radius: 18px;
    padding: 20px 0;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-center-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1rem;
    padding: 6px 20px;
    width: 100%;
    text-align: center;
  }

  .announcement-badge {
    margin-bottom: 16px;
    max-width: 95%;
  }

  .badge-text {
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-heading {
    font-size: 2.15rem;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero-description {
    font-size: 0.92rem;
    line-height: 1.5;
    padding: 0 8px;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: row;
    gap: 16px;
    margin-bottom: 36px;
  }

  .btn-primary-journey {
    padding: 10px 22px;
    font-size: 0.84rem;
  }

  .cta-secondary-link {
    font-size: 0.84rem;
  }

  .trust-title {
    font-size: 0.76rem;
    margin-bottom: 16px;
    padding: 0 10px;
  }

  .trust-logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
    padding: 0 10px;
  }

  .brand-svg {
    height: 18px;
  }
}

/* Accessibility: Reduced Motion */
@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;
  }
  
  .hero-video {
    animation: none;
  }
}

/* ==========================================================================
   Shared Section Components & Glows
   ========================================================================== */
.section-container {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 130px 24px;
}

/* Ambient glow orbs in background - smooth seamless cosmic gradients */
.section-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.26;
}

.glow-amber-top {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 450px;
  background: radial-gradient(circle, rgba(229, 147, 50, 0.35) 0%, rgba(184, 98, 22, 0.15) 50%, rgba(8, 5, 3, 0) 75%);
}

.glow-amber-right {
  top: 25%;
  right: -5%;
  width: 750px;
  height: 600px;
  background: radial-gradient(circle, rgba(223, 137, 44, 0.32) 0%, rgba(164, 79, 18, 0.15) 45%, rgba(8, 5, 3, 0) 75%);
}

.glow-amber-center {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(circle, rgba(230, 150, 53, 0.3) 0%, rgba(158, 75, 16, 0.12) 45%, rgba(8, 5, 3, 0) 75%);
}

.glow-amber-bottom {
  bottom: 5%;
  left: 20%;
  width: 750px;
  height: 480px;
  background: radial-gradient(circle, rgba(217, 130, 39, 0.28) 0%, rgba(140, 66, 14, 0.12) 50%, rgba(8, 5, 3, 0) 75%);
}

/* Section Header Typography */
.section-header {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 28, 17, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 205, 125, 0.25);
  border-radius: 9999px;
  padding: 5px 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #fed9a8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.badge-glow-dot {
  width: 6px;
  height: 6px;
  background: #e59332;
  border-radius: 50%;
  box-shadow: 0 0 10px #f0a243, 0 0 18px #d88022;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.028em;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 840px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(240, 230, 220, 0.72);
  max-width: 620px;
  letter-spacing: -0.005em;
}

/* ==========================================================================
   SECTION 1: How It Works Styles
   ========================================================================== */
.steps-timeline {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  position: relative;
  background: rgba(22, 16, 11, 0.65);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
  border-color: rgba(235, 165, 70, 0.38);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 142, 52, 0.16);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(180, 110, 40, 0.2);
  border: 1px solid rgba(240, 170, 80, 0.35);
  margin-bottom: 24px;
  box-shadow: inset 0 1px 1px rgba(255, 225, 170, 0.3);
}

.step-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffbf6c;
  letter-spacing: -0.01em;
}

.step-title {
  font-size: 1.28rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(240, 230, 220, 0.7);
  margin-bottom: 22px;
  flex-grow: 1;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag-pill {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 235, 210, 0.85);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 9999px;
}

/* Interactive preview box inside step card */
.step-interactive-preview {
  background: rgba(12, 8, 5, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: monospace;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.preview-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.preview-dot.red { background: #e05b5b; }
.preview-dot.amber { background: #e59332; }
.preview-dot.green { background: #4ec274; }

.preview-title {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-body code {
  font-size: 0.75rem;
  color: #dfcaa8;
  line-height: 1.4;
  word-break: break-all;
}

.cmd-keyword { color: #f59e38; font-weight: bold; }
.cmd-val { color: #ffd699; }

.metric-row {
  display: flex;
  justify-content: space-between;
}

.metric-col {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffbf6c;
  font-family: var(--font-main);
}

.metric-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 2px;
}

.export-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: rgba(255, 245, 235, 0.85);
  font-family: var(--font-main);
}

.pulse-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ec274;
  box-shadow: 0 0 10px #4ec274;
}

/* ==========================================================================
   SECTION 2: Trending Worlds Styles
   ========================================================================== */
.filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(24, 17, 12, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 5px;
  margin-top: 28px;
}

.filter-btn {
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: #ffffff;
}

.filter-btn.active {
  color: #ffffff;
  background: rgba(185, 115, 45, 0.35);
  border: 1px solid rgba(240, 170, 80, 0.45);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.trending-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.world-card {
  background: rgba(20, 14, 10, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.world-card:hover {
  border-color: rgba(235, 165, 70, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 142, 52, 0.18);
}

.world-visual {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #080503;
}

.world-img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.65s ease;
}

.world-card:hover .world-img {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.world-aurora-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 9, 6, 0.75) 0%, rgba(14, 9, 6, 0.1) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.world-badge-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 14, 9, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 200, 120, 0.3);
  border-radius: 9999px;
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #ffbf6c;
}

.live-pulse {
  width: 6px;
  height: 6px;
  background: #f59e38;
  border-radius: 50%;
  box-shadow: 0 0 8px #f59e38;
}

.world-stats-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  gap: 10px;
  background: rgba(15, 10, 7, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 4px 11px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

.world-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.world-category-tag {
  font-size: 0.74rem;
  font-weight: 600;
  color: #ffbf6c;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.world-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}

.world-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(240, 230, 220, 0.7);
  margin-bottom: 20px;
  flex-grow: 1;
}

.world-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 9px;
}

.author-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.av-1 { background: linear-gradient(135deg, #d48a33, #6d390a); }
.av-2 { background: linear-gradient(135deg, #a858ff, #431a74); }
.av-3 { background: linear-gradient(135deg, #37b7ff, #114e74); }

.author-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.btn-inspect-world {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #ffd699;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 210, 130, 0.2);
  transition: all 0.25s ease;
}

.btn-inspect-world svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.btn-inspect-world:hover {
  background: rgba(210, 135, 45, 0.25);
  border-color: rgba(255, 210, 130, 0.45);
  color: #ffffff;
}

.btn-inspect-world:hover svg {
  transform: translateX(2px);
}

/* ==========================================================================
   SECTION 3: Features Bento Grid Styles
   ========================================================================== */
.features-bento-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  position: relative;
  background: rgba(22, 16, 11, 0.65);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  border-color: rgba(235, 165, 70, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(216, 142, 52, 0.15);
}

.feature-card.bento-wide {
  grid-column: span 2;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(180, 110, 40, 0.18);
  border: 1px solid rgba(240, 170, 80, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #ffbf6c;
  box-shadow: inset 0 1px 1px rgba(255, 225, 170, 0.25);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-pill-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffbf6c;
  background: rgba(255, 180, 80, 0.1);
  border: 1px solid rgba(255, 180, 80, 0.22);
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.feature-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.018em;
  margin-bottom: 12px;
}

.feature-paragraph {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(240, 230, 220, 0.7);
}

/* ==========================================================================
   SECTION 4: FAQs Interactive Accordion Styles
   ========================================================================== */
.faq-accordion-list {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(22, 16, 11, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 210, 140, 0.25);
}

.faq-item.active {
  border-color: rgba(235, 165, 70, 0.38);
  background: rgba(28, 19, 13, 0.75);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(216, 142, 52, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 22px 26px;
  font-size: 1.02rem;
  font-weight: 520;
  color: #ffffff;
  letter-spacing: -0.01em;
  background: none;
  cursor: pointer;
  gap: 16px;
}

.faq-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-chevron {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-pill {
  background: rgba(210, 135, 45, 0.28);
  border-color: rgba(240, 170, 80, 0.4);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #ffbf6c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 26px;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding: 0 26px 24px 26px;
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.62;
  color: rgba(240, 230, 220, 0.74);
}

/* ==========================================================================
   Final CTA Banner Styles
   ========================================================================== */
.cta-banner-section {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 40px auto 100px auto;
  padding: 0 24px;
}

.cta-banner-box {
  position: relative;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(195, 120, 45, 0.25) 0%,
    rgba(28, 19, 13, 0.8) 55%,
    rgba(14, 9, 6, 0.95) 100%
  );
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 195, 100, 0.32);
  border-radius: 32px;
  padding: 80px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255, 235, 190, 0.3);
}

.cta-banner-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 260px;
  background: radial-gradient(circle, rgba(235, 160, 60, 0.35) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.cta-banner-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 560;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 18px;
  max-width: 760px;
}

.cta-banner-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(240, 230, 220, 0.72);
  max-width: 620px;
  margin-bottom: 36px;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* ==========================================================================
   Site Footer Styles
   ========================================================================== */
.site-footer {
  position: relative;
  background: #060402;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 24px 40px 24px;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-col {
  max-width: 340px;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 22px 0;
}

.system-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.status-live-dot {
  width: 6px;
  height: 6px;
  background: #4ec274;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ec274;
}

.footer-links-group {
  display: flex;
  gap: 70px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 0.84rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-link {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Scroll Reveal Animations
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive updates for additional sections */
@media (max-width: 1024px) {
  .steps-timeline,
  .trending-grid,
  .features-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card.bento-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 80px 16px;
  }

  .steps-timeline,
  .trending-grid,
  .features-bento-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.bento-wide {
    grid-column: span 1;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links-group {
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

