/* ========================================
   ORBICIRCLECRW — ENCHANTED PAN FOREST
   Main Stylesheet
   ======================================== */

/* --- 1. CSS Variables --- */
:root {
  /* Base Colors */
  --deep-forest: #0b1a13;
  --moss-shadow: #132a21;
  --glass-surface: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.1);

  /* Accent Colors */
  --nature-green: #22c55e;
  --soft-leaf: #4ade80;
  --earth-gold: #d4a373;
  --mystic-teal: #2dd4bf;
  --nature-green-dim: rgba(34, 197, 94, 0.15);
  --nature-green-glow: rgba(34, 197, 94, 0.3);

  /* Typography Colors */
  --text-primary: #ecfdf5;
  --text-secondary: #bbf7d0;
  --text-muted: #6ee7b7;

  /* Gradients */
  --grad-green: linear-gradient(135deg, #22c55e, #16a34a);
  --grad-forest: linear-gradient(180deg, #0b1a13 0%, #132a21 50%, #0f2318 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1320px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);
}

/* --- 2. Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--deep-forest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }

/* --- 3. Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 860px;
}

/* --- 4. Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

.text-glow {
  color: var(--nature-green);
  text-shadow: 0 0 30px var(--nature-green-glow), 0 0 60px rgba(34, 197, 94, 0.15);
}

/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 26, 19, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  transition: all var(--transition-base);
}

.header.scrolled {
  background: rgba(11, 26, 19, 0.9);
  border-bottom-color: rgba(34, 197, 94, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--nature-green);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--nature-green);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 26, 19, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.mobile-nav-link {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--nature-green);
}

.mobile-cta {
  margin-top: 16px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  transition: all var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--nature-green);
  color: var(--nature-green);
  transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

.btn-arrow {
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(45, 212, 191, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(19, 42, 33, 0.8) 0%, transparent 50%),
    var(--grad-forest);
}

.hero-rays {
  position: absolute;
  top: 0;
  right: 10%;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ray {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 40%, transparent 70%);
  transform-origin: top center;
}

.ray-1 { left: 20%; transform: rotate(15deg); animation: rayFloat 8s ease-in-out infinite; }
.ray-2 { left: 50%; transform: rotate(5deg); animation: rayFloat 10s ease-in-out infinite 2s; width: 3px; }
.ray-3 { left: 75%; transform: rotate(-10deg); animation: rayFloat 12s ease-in-out infinite 4s; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--soft-leaf);
  background: var(--nature-green-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-disclaimer {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-frame {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 6s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.15);
  top: 10%;
  left: 10%;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: rgba(45, 212, 191, 0.12);
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: rgba(212, 163, 115, 0.1);
  top: 50%;
  right: 20%;
  animation-delay: 4s;
}

.hero-icon-tree {
  position: relative;
  z-index: 2;
}

.hero-icon-tree svg {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.2));
}

.flute-notes {
  position: absolute;
  right: 10%;
  top: 30%;
  z-index: 3;
}

.note {
  position: absolute;
  font-size: 1.5rem;
  color: var(--earth-gold);
  opacity: 0;
  animation: noteFloat 4s ease-in-out infinite;
}

.note-1 { animation-delay: 0s; top: 0; left: 0; }
.note-2 { animation-delay: 1.3s; top: 20px; left: 30px; font-size: 1.2rem; }
.note-3 { animation-delay: 2.6s; top: -10px; left: 50px; font-size: 1rem; }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--nature-green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ========================================
   SECTIONS
   ======================================== */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--soft-leaf);
  background: var(--nature-green-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   GAME SECTION
   ======================================== */
.game-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.game-container {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-slow);
}

.game-container:hover {
  transform: scale(1.005);
}

.game-glow {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(45, 212, 191, 0.2), rgba(34, 197, 94, 0.3));
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.game-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--moss-shadow);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow:
    0 0 60px rgba(34, 197, 94, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.game-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--radius-lg);
  background: #0a1510;
}

.game-disclaimer {
  text-align: center;
  margin-top: 24px;
}

.game-disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   FEATURES
   ======================================== */
.features-section {
  padding: var(--section-pad) 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--grad-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--nature-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  background: var(--glass-hover);
  border-color: rgba(34, 197, 94, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--nature-green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  padding: var(--section-pad) 0;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.step-card {
  background: var(--grad-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  max-width: 340px;
  transition: all var(--transition-base);
}

.step-card:hover {
  background: var(--glass-hover);
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.15);
}

.step-number {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--nature-green);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Cinzel', serif;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.step-connector {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-connector svg {
  width: 80px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: var(--section-pad) 0;
}

.cta-card {
  background: var(--grad-glass);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.1);
  top: -20%;
  left: -10%;
}

.cta-orb-2 {
  width: 250px;
  height: 250px;
  background: rgba(45, 212, 191, 0.08);
  bottom: -20%;
  right: -10%;
}

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

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
}

.page-hero-content {
  max-width: 650px;
  margin: 0 auto;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ========================================
   CONTENT SECTIONS (Inner Pages)
   ======================================== */
.content-section {
  padding: 60px 0 var(--section-pad);
}

.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--soft-leaf);
}

.content-block p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.content-list {
  margin: 16px 0;
  padding-left: 24px;
}

.content-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-list li::before {
  content: '🌿';
  position: absolute;
  left: -8px;
  font-size: 0.7rem;
}

.content-cta {
  text-align: center;
  padding-top: 20px;
}

/* Legal Content */
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--soft-leaf);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content a {
  color: var(--nature-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--soft-leaf);
}

.highlight-box {
  background: var(--nature-green-dim);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 36px;
}

.highlight-box h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--grad-glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--nature-green);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(187, 247, 208, 0.3);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236ee7b7' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--moss-shadow);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 60px 20px;
}

.success-icon {
  font-size: 3rem;
}

.form-success h3 {
  font-size: 1.4rem;
  color: var(--nature-green);
}

.form-success p {
  color: var(--text-secondary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 18, 13, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 300px;
}

.footer-18 {
  font-size: 0.8rem;
  color: var(--earth-gold);
  font-weight: 600;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--nature-green);
}

.footer-info li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.5;
  margin-bottom: 8px;
}

/* ========================================
   PARTICLES
   ======================================== */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleDrift linear infinite;
}

.particle-1 { width: 4px; height: 4px; background: rgba(34,197,94,0.3); left: 10%; animation-duration: 20s; animation-delay: 0s; }
.particle-2 { width: 3px; height: 3px; background: rgba(45,212,191,0.2); left: 25%; animation-duration: 25s; animation-delay: 3s; }
.particle-3 { width: 5px; height: 5px; background: rgba(212,163,115,0.2); left: 40%; animation-duration: 18s; animation-delay: 6s; }
.particle-4 { width: 3px; height: 3px; background: rgba(34,197,94,0.25); left: 55%; animation-duration: 22s; animation-delay: 1s; }
.particle-5 { width: 4px; height: 4px; background: rgba(110,231,183,0.2); left: 70%; animation-duration: 19s; animation-delay: 4s; }
.particle-6 { width: 3px; height: 3px; background: rgba(45,212,191,0.25); left: 85%; animation-duration: 24s; animation-delay: 7s; }
.particle-7 { width: 4px; height: 4px; background: rgba(34,197,94,0.2); left: 15%; animation-duration: 21s; animation-delay: 9s; }
.particle-8 { width: 5px; height: 5px; background: rgba(212,163,115,0.15); left: 35%; animation-duration: 26s; animation-delay: 2s; }
.particle-9 { width: 3px; height: 3px; background: rgba(34,197,94,0.3); left: 60%; animation-duration: 17s; animation-delay: 5s; }
.particle-10 { width: 4px; height: 4px; background: rgba(45,212,191,0.2); left: 80%; animation-duration: 23s; animation-delay: 8s; }
.particle-11 { width: 3px; height: 3px; background: rgba(110,231,183,0.25); left: 5%; animation-duration: 20s; animation-delay: 11s; }
.particle-12 { width: 4px; height: 4px; background: rgba(212,163,115,0.2); left: 50%; animation-duration: 28s; animation-delay: 10s; }
/* ENDFILE */

<!-- FILE: animations.css -->
/* ========================================
   ORBICIRCLECRW — ANIMATIONS
   ======================================== */

/* --- Fade In Up --- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Fade In Right --- */
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Stagger Delays --- */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* --- Particle Drift --- */
@keyframes particleDrift {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(80vh) translateX(10px) scale(1);
  }
  50% {
    transform: translateY(40vh) translateX(-20px) scale(1);
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
    transform: translateY(5vh) translateX(15px) scale(0.8);
  }
  100% {
    transform: translateY(-10vh) translateX(0) scale(0);
    opacity: 0;
  }
}

/* --- Orb Float --- */
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -10px) scale(1.05); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

/* --- Ray Float --- */
@keyframes rayFloat {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* --- Glow Pulse --- */
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* --- Note Float --- */
@keyframes noteFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.8; transform: translate(-10px, -15px) scale(1); }
  60% { opacity: 0.5; transform: translate(-25px, -40px) scale(0.9); }
  100% { opacity: 0; transform: translate(-40px, -65px) scale(0.5); }
}

/* --- Scroll Pulse --- */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* --- Subtle Rotate --- */
@keyframes subtleRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}