/*
Theme Name: AigentOS Landing Theme
Theme URI: https://aigentworkers.io
Author: Antigravity
Description: Premium dark/neon custom landing theme for AigentOS.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aigentos
*/

/* 
   AigentOS CSS Stylesheet
   Premium Dark/Neon Design System (Lumina & Daylight Inspired)
*/

/* 1. Design Tokens & Variables */
:root {
  /* Color Palette */
  --bg-main: #05070f;
  --bg-card: rgba(13, 17, 30, 0.45);
  --bg-card-hover: rgba(22, 29, 50, 0.6);
  --border-color: rgba(255, 255, 255, 0.07);
  --border-color-hover: rgba(163, 255, 18, 0.3);
  
  --primary-neon: #a3ff12;      /* Neon lime green */
  --primary-neon-rgb: 163, 255, 18;
  --secondary-neon: #00f0ff;    /* Cyan glow */
  --mint-neon: #26ffd0;         /* Mint green glow */
  --accent-coral: #ff5a5f;      /* Soft coral red */
  
  --text-main: #f3f4f6;         /* Off-white */
  --text-muted: #8e9bb4;        /* Slate gray */
  --text-inverse: #05070f;      /* Dark text for neon buttons */
  
  /* Fonts */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --font-mono: 'Fira Code', monospace;
  
  /* Spacing & Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(163, 255, 18, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  line-height: 1.6;
}

/* 4. Typography & Utility Styles */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
}

.highlight {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary-neon);
}

.coral-highlight {
  color: var(--accent-coral);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Glassmorphism Container */
.glass-panel {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(163, 255, 18, 0.15), transparent 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.glass-panel:hover::before {
  opacity: 1;
}

.glass-panel > *:not(.featured-badge) {
  position: relative;
  z-index: 2;
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* 5. Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(5, 7, 15, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-neon);
  box-shadow: 0 0 12px var(--primary-neon);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary-neon);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Skip to content link */
.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  padding: 12px 24px;
  background: var(--primary-neon);
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta-mobile {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary-neon);
  color: var(--text-inverse);
  box-shadow: 0 4px 20px rgba(163, 255, 18, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(163, 255, 18, 0.45);
  background: #b5ff42;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--text-main);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--primary-neon);
  outline-offset: 3px;
}

/* 6. Hero Section */
.hero {
  padding: 150px 5% 100px;
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(163, 255, 18, 0.06);
  border: 1px solid rgba(163, 255, 18, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-neon);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-neon);
  animation: pulse-glow 1.5s infinite;
}

.hero-description {
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Screen Mockup (Orgo VM Interface) */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.screen-mockup {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: #0d111d;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), 0 0 50px -10px rgba(163, 255, 18, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.screen-header {
  height: 36px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 6px;
}

.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.screen-dot.red { background: var(--accent-coral); }
.screen-dot.yellow { background: #ffbe2f; }
.screen-dot.green { background: #2ea44f; }

.screen-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 10px;
}

.screen-body {
  flex: 1;
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #a5b4fc;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
}

.terminal-line {
  display: flex;
  gap: 8px;
  line-height: 1.5;
}

.terminal-prompt {
  color: var(--primary-neon);
}

.terminal-output {
  color: var(--text-main);
}

.terminal-success {
  color: #10b981;
}

.terminal-accent {
  color: var(--secondary-neon);
}

/* Mock VM UI Elements overlay */
.mock-ui-overlay {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-top: 5px;
}

.mock-ui-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 5px;
  margin-bottom: 5px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mock-ui-content {
  font-size: 0.75rem;
  color: var(--text-main);
}

/* 7. How It Works Section */
.section {
  padding: 100px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 15px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  padding: 40px 30px;
  position: relative;
  background: rgba(13, 17, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.step-card-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-neon);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.step-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary-neon);
  margin-bottom: 16px;
  display: block;
  letter-spacing: 0.04em;
}

.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.step-card p {
  font-size: 0.95rem;
}

.step-card:hover {
  border-color: var(--border-color-hover);
  background: rgba(13, 17, 30, 0.4);
}

/* Social Proof Section */
.social-proof {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.proof-card {
  text-align: center;
  padding: 40px 30px;
  background: rgba(13, 17, 30, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.proof-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(13, 17, 30, 0.35);
}

.proof-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.proof-stat {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--primary-neon);
  line-height: 1;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* 8. Employees (Roles) Section */
.employees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.employee-card {
  padding: 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(13, 17, 30, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.employee-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 17, 30, 0.5);
}

.employee-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--primary-neon);
}

.employee-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  min-height: 3.2em;
}

.employee-desc p {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.6;
  min-height: 13em;
}

.employee-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  flex-grow: 1;
}

.employee-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  margin-bottom: 4px;
}

.employee-features li::before {
  content: '→';
  color: var(--primary-neon);
  font-weight: bold;
  margin-top: 1px;
}

/* 9. Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(13, 17, 30, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 17, 30, 0.4);
}

.pricing-card.featured {
  border-color: rgba(163, 255, 18, 0.25);
  background: radial-gradient(circle at 50% 0%, rgba(163, 255, 18, 0.04) 0%, transparent 60%), rgba(13, 17, 30, 0.35);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured:hover {
  border-color: var(--primary-neon);
}

.pricing-header {
  height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 65px;
}

.price-period {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 300;
}

.pricing-card > p {
  margin-bottom: 25px;
  line-height: 1.6;
  min-height: 6em;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li.check::before {
  content: '✓';
  color: var(--primary-neon);
  font-weight: bold;
}

.pricing-features li.cross {
  opacity: 0.5;
}

.pricing-features li.cross::before {
  content: '✕';
  color: var(--accent-coral);
  font-weight: bold;
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: var(--primary-neon);
  color: var(--text-inverse);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
}

/* 10. CTA (Lead Capture) Section */
.cta-section {
  padding: 120px 5%;
  text-align: center;
  position: relative;
}

.cta-container {
  max-width: 750px;
  margin: 0 auto;
}

.cta-container h2 {
  margin-bottom: 1.5rem;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 2.5rem auto 1.5rem;
  position: relative;
}

.cta-input {
  flex: 1;
  padding: 16px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.cta-input:focus {
  outline: none;
  border-color: var(--primary-neon);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(163, 255, 18, 0.1);
}

.cta-input:focus-visible {
  outline: 2px solid var(--primary-neon);
  outline-offset: 2px;
}

.cta-form .btn {
  padding: 0 32px;
}

.form-success-msg {
  color: var(--primary-neon);
  font-size: 0.9rem;
  margin-top: 10px;
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

/* 11. Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 60px 5% 40px;
  background: #02040a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Animations */
@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(163, 255, 18, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(163, 255, 18, 0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design Media Queries */
/* 10.5 Sandbox Section */
.sandbox-section {
  padding: 80px 5% 40px;
}

.sandbox-container {
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.sandbox-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sandbox-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.sandbox-features {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.sandbox-feature-item h4 {
  font-family: var(--font-sans);
  color: var(--primary-neon);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.sandbox-feature-item p {
  font-size: 0.85rem;
}

.sandbox-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sandbox-image {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: var(--transition-smooth);
}

.sandbox-image:hover {
  transform: scale(1.02);
  border-color: var(--border-color-hover);
}

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .step-grid, .employees-grid, .pricing-grid, .proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .pricing-grid {
    max-width: 480px;
  }
  
  .sandbox-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
    gap: 30px;
  }
  
  .sandbox-content {
    align-items: center;
  }
  
  .sandbox-features {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .navbar {
    padding: 0 20px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(5, 7, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
  }
  
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    font-size: 1.25rem;
  }
  
  .nav-cta-mobile {
    display: block;
    margin-top: 10px;
  }
  
  .nav-cta-desktop {
    display: none;
  }
  
  .cta-form {
    flex-direction: column;
    border-radius: 0;
    gap: 15px;
  }
  
  .cta-input, .cta-form .btn {
    width: 100%;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
}

/* --- AigentOS Animated Additions --- */

/* Aurora Rotating Background Light Effect */
body::after {
  content: "";
  position: fixed;
  inset: -30%;
  pointer-events: none;
  background: conic-gradient(from 140deg, transparent 0 20%, rgba(163, 255, 18, 0.08), transparent 35%, rgba(38, 255, 208, 0.06), transparent 60%);
  animation: aurora 18s linear infinite;
  filter: blur(64px);
  opacity: 0.65;
  z-index: -1;
}

@keyframes aurora {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar Logo SVG styling */
.logo-mark {
  width: 26px;
  height: 26px;
  position: relative;
  display: grid;
  place-items: center;
}

.logo-mark svg {
  overflow: visible;
  filter: drop-shadow(0 0 12px rgba(163, 255, 18, 0.7));
}

.logo-mark .orbit {
  transform-origin: 13px 13px;
  animation: orbit-logo 5s linear infinite;
}

@keyframes orbit-logo {
  to {
    transform: rotate(360deg);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .glass-panel::before {
    display: none;
  }

  body::after {
    animation: none;
    opacity: 0.3;
  }
}



