/* /css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #070709;
  --color-bg-secondary: #0d0e12;
  --color-bg-tertiary: #14151b;
  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-accent-gold: #bdff00;
  --color-accent-gold-hover: #a5e000;
  --color-accent-gold-rgb: 189, 255, 0;
  --color-accent-gold-glow: rgba(189, 255, 0, 0.12);
  --color-border: rgba(255, 255, 255, 0.05);
  --color-border-hover: rgba(189, 255, 0, 0.25);
  --font-primary: 'Outfit', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-neon: 0 0 35px rgba(189, 255, 0, 0.12);
}

/* Base resets & scrollbar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 10px;
  transition: var(--transition-smooth);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-gold);
}

body {
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  background-color: var(--color-bg-primary);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(189, 255, 0, 0.03) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 229, 255, 0.03) 0%, transparent 45%);
  background-attachment: fixed;
  animation: ambientFloat 25s ease-in-out infinite;
}

@keyframes ambientFloat {
  0% { background-position: 0% 0%, 100% 100%; }
  50% { background-position: 5% 10%, 95% 90%; }
  100% { background-position: 0% 0%, 100% 100%; }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-gold {
  color: var(--color-accent-gold);
  background: linear-gradient(135deg, #bdff00 0%, #00e5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-gold) 0%, #00e5ff 100%);
  width: 0%;
  z-index: 1100;
  box-shadow: 0 0 10px rgba(189, 255, 0, 0.4);
}

/* Floating Pill Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  height: 75px;
}

.header.scrolled .container {
  background: rgba(13, 14, 18, 0.8);
  border-color: var(--color-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-md);
  margin-top: 10px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  padding: 0 24px;
}

.logo {
  font-size: 26px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  font-weight: 400;
  color: #fff;
  transition: var(--transition-smooth);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent-gold);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 6px;
  height: 6px;
  bottom: -4px;
}

.nav-btn {
  padding: 10px 24px;
  border-radius: var(--border-radius-sm);
  background: transparent;
  color: var(--color-accent-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  border: 1.5px solid var(--color-accent-gold);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(189, 255, 0, 0.08);
  transition: var(--transition-smooth);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: var(--color-accent-gold);
  color: #000;
  box-shadow: var(--shadow-neon);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1010;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--color-accent-gold);
  color: #000;
  border: none;
  box-shadow: 0 6px 20px rgba(189, 255, 0, 0.2);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--color-accent-gold-hover);
  box-shadow: var(--shadow-neon);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--color-accent-gold);
  background-color: rgba(189, 255, 0, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(189, 255, 0, 0.1);
}

/* 3D Glassmorphism Card System */
.card-glass {
  background: rgba(20, 21, 27, 0.45);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 35px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.1s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card-glass:hover {
  border-color: var(--color-border-hover);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.4), 
    0 0 25px rgba(189, 255, 0, 0.08),
    inset 0 0 15px rgba(255, 255, 255, 0.01);
}

/* 3D Pop Out Elements inside Card */
.card-glass i,
.card-glass h3,
.card-glass p,
.card-glass ul,
.card-glass button,
.card-glass a {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(0px);
}

.card-glass:hover i {
  transform: translateZ(30px) scale(1.08);
}

.card-glass:hover h3 {
  transform: translateZ(20px);
}

.card-glass:hover p,
.card-glass:hover ul {
  transform: translateZ(10px);
}

/* Hero Section Split Layout */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 60px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(13, 14, 18, 0.2) 0%, rgba(7, 7, 9, 0.95) 100%);
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  text-align: left;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(189, 255, 0, 0.08);
  border: 1px solid rgba(189, 255, 0, 0.2);
  color: var(--color-accent-gold);
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-tag i {
  font-size: 10px;
  animation: pulseNeon 2s infinite;
}

@keyframes pulseNeon {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

/* Hero Right Side Live Stats Dashboard */
.hero-dashboard {
  background: rgba(13, 14, 18, 0.7);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-title {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-active-badge {
  background: rgba(189, 255, 0, 0.15);
  color: var(--color-accent-gold);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: bold;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 16px;
  text-align: center;
}

.metric-value {
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 11px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tracker-bar-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 16px;
}

.tracker-label {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  color: var(--color-text-secondary);
}

.tracker-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.tracker-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-gold) 0%, #00e5ff 100%);
  width: 78%;
  border-radius: 4px;
  animation: progressLoad 2s ease-out forwards;
}

@keyframes progressLoad {
  from { width: 0; }
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-accent-gold);
  animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(189, 255, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(189, 255, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(189, 255, 0, 0); }
}

/* Bento Grid System */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-row-2 {
  grid-row: span 2;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.float-whatsapp {
  background-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.float-call {
  background-color: var(--color-accent-gold);
  color: #000;
  box-shadow: 0 8px 20px rgba(189, 255, 0, 0.3);
}

/* Sticky Bottom Join Bar */
.sticky-join-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 14, 18, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--color-border);
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.sticky-join-bar.visible {
  transform: translateY(0);
}

.sticky-join-text {
  font-size: 15px;
  font-weight: 600;
}

/* Speedometer Gauge styling */
.gauge-wrapper {
  position: relative;
  width: 200px;
  height: 100px;
  margin: 25px auto 10px auto;
  overflow: hidden;
}

.gauge-dial {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--color-bg-secondary);
  border-radius: 200px 200px 0 0;
  border: 1px solid var(--color-border);
  border-bottom: none;
  overflow: hidden;
}

.gauge-bar {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 0;
  border-radius: 180px 180px 0 0;
  background: conic-gradient(from 270deg, var(--color-accent-gold) 0deg, #00e5ff 180deg, var(--color-bg-secondary) 180deg);
  mask: radial-gradient(circle at 50% 100%, transparent 68px, #000 70px);
  -webkit-mask: radial-gradient(circle at 50% 100%, transparent 68px, #000 70px);
  transform: rotate(0deg);
  transform-origin: 50% 100%;
  transition: var(--transition-smooth);
}

.gauge-needle {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 80px;
  background: var(--color-accent-gold);
  border-radius: 4px;
  transform-origin: 50% 100%;
  transform: translateX(-50%) rotate(-90deg);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 10px rgba(189, 255, 0, 0.5);
}

.gauge-needle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 3px solid var(--color-accent-gold);
  border-radius: 50%;
}

.gauge-value {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-top: 5px;
  color: #fff;
}

.gauge-label {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Modals & Bottom Sheets */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 500px;
  padding: 36px;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-handle {
  display: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--color-accent-gold);
}

.modal-title {
  font-size: 26px;
  margin-bottom: 24px;
  text-align: center;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 10px rgba(189, 255, 0, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  display: none;
}

.form-message.success {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid #25d366;
  color: #25d366;
  display: block;
}

.form-message.error {
  background-color: rgba(220, 53, 69, 0.1);
  border: 1px solid #dc3545;
  color: #dc3545;
  display: block;
}

/* Interactive Tools (Calculators) */
.calc-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.calc-result {
  margin-top: 20px;
  padding: 16px;
  background-color: var(--color-bg-tertiary);
  border-left: 3px solid var(--color-accent-gold);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  display: none;
}

.calc-result.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 7, 9, 0.96);
  z-index: 1250;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  max-height: 80vh;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

.lightbox-prev { left: -50px; }
.lightbox-next { right: -50px; }

.lightbox-caption {
  color: var(--color-text-secondary);
  text-align: center;
  margin-top: 15px;
  font-size: 15px;
}

/* General Layout helpers */
.section {
  padding: 90px 0;
}

.section-dark {
  background-color: var(--color-bg-primary);
}

.section-light {
  background-color: var(--color-bg-secondary);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px auto;
}

.section-subtitle {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent-gold);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
}

/* AURA-AI Floating Advisor Sidebar Widget */
.aura-ai-trigger {
  background: linear-gradient(135deg, var(--color-accent-gold) 0%, #00e5ff 100%);
  color: #000;
  font-weight: bold;
  box-shadow: var(--shadow-neon);
}

.aura-ai-trigger i {
  animation: spinSlow 6s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.aura-ai-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: rgba(13, 14, 18, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-left: 1px solid var(--color-border);
  z-index: 1300;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 35px 30px;
}

.aura-ai-sidebar.active {
  right: 0;
}

.aura-ai-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
}

.aura-ai-title {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aura-ai-close {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.aura-ai-close:hover {
  color: var(--color-accent-gold);
}

.aura-ai-console {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 5px;
}

.ai-message {
  padding: 15px;
  border-radius: var(--border-radius-md);
  font-size: 14.5px;
  line-height: 1.6;
}

.ai-message.system {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
}

.ai-message.scanned {
  background: rgba(189, 255, 0, 0.04);
  border: 1px solid rgba(189, 255, 0, 0.15);
  color: var(--color-text-primary);
}

.ai-choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-choice-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: #fff;
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-choice-btn:hover {
  background: rgba(189, 255, 0, 0.05);
  border-color: var(--color-accent-gold);
}

.ai-scanner-screen {
  background: #000;
  border: 1px solid #14151b;
  border-radius: var(--border-radius-md);
  padding: 20px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ai-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent-gold);
  box-shadow: 0 0 10px var(--color-accent-gold);
  animation: scanSweep 2s infinite ease-in-out;
  display: none;
}

@keyframes scanSweep {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

.ai-scanner-status {
  font-family: monospace;
  color: var(--color-accent-gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 10px;
}

/* Mobile Responsiveness Overrides */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 60px;
    background-attachment: scroll;
  }
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .hero-dashboard {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
    padding: 24px;
  }
  .header {
    height: 80px;
  }
  .header.scrolled {
    height: 70px;
  }
  .header.scrolled .container {
    margin-top: 0;
    border-radius: 0;
    background: rgba(13, 14, 18, 0.95);
    border: none;
    border-bottom: 1px solid var(--color-border);
  }
  /* Body backdrop overlay for mobile menu */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::after {
    opacity: 1;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100vh;
    transform: translateX(100%);
    background: rgba(10, 11, 14, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 1005;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.65);
    overflow-y: auto;
    visibility: hidden;
    gap: 0;
    counter-reset: menu-counter;
  }
  .nav.active {
    transform: translateX(0);
    visibility: visible;
  }
  
  .nav .nav-link {
    font-size: 18px !important;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s, color 0.3s;
  }
  .nav .nav-link:hover,
  .nav .nav-link.active {
    color: var(--color-accent-gold) !important;
  }
  
  .nav .nav-link::before {
    counter-increment: menu-counter;
    content: counter(menu-counter, decimal-leading-zero) ".";
    font-size: 11px;
    font-family: monospace;
    color: var(--color-accent-gold);
    margin-right: 12px;
    opacity: 0.6;
    font-weight: 400;
  }
  
  .nav .nav-link::after {
    display: none !important;
  }
  
  .nav.active .nav-link {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav.active .nav-link:nth-child(1) { transition-delay: 0.05s; }
  .nav.active .nav-link:nth-child(2) { transition-delay: 0.09s; }
  .nav.active .nav-link:nth-child(3) { transition-delay: 0.13s; }
  .nav.active .nav-link:nth-child(4) { transition-delay: 0.17s; }
  .nav.active .nav-link:nth-child(5) { transition-delay: 0.21s; }
  .nav.active .nav-link:nth-child(6) { transition-delay: 0.25s; }
  .nav.active .nav-link:nth-child(7) { transition-delay: 0.29s; }
  .nav.active .nav-link:nth-child(8) { transition-delay: 0.33s; }
  .nav.active .nav-link:nth-child(9) { transition-delay: 0.37s; }
  .nav.active .nav-link:nth-child(10) { transition-delay: 0.41s; }
  
  .nav .nav-btn {
    margin-top: 24px;
    width: 100%;
    max-width: none;
    font-size: 16px;
    padding: 14px 20px;
    text-align: center;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s, background 0.3s, color 0.3s;
  }
  .nav.active .nav-btn {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.45s;
  }
  .nav-toggle {
    display: flex;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-col-2 {
    grid-column: span 1;
  }
  .bento-row-2 {
    grid-row: span 1;
  }
  .aura-ai-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 767px) {
  .hero {
    background-image: linear-gradient(180deg, rgba(7, 7, 9, 0.72) 0%, rgba(7, 7, 9, 0.98) 100%), url('/uploads/hero_main.png') !important;
    background-position: center 30% !important;
  }
  .hero::after {
    display: none !important;
  }
  .section {
    padding: 60px 0;
  }
  .lightbox-prev,
  .lightbox-next {
    font-size: 28px;
  }
  .lightbox-prev { left: -35px; }
  .lightbox-next { right: -35px; }
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  
  /* Mobile Bottom Sheets */
  .modal {
    align-items: flex-end;
    padding: 0;
  }
  
  .modal-content {
    max-width: 100%;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 20px 40px 20px;
    margin: 0;
    border: none;
    border-top: 1px solid var(--color-border);
  }
  
  .modal.active .modal-content {
    transform: translateY(0);
  }
  
  .modal-handle {
    display: block;
    width: 40px;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: -15px auto 20px auto;
    cursor: pointer;
  }
  .card-glass {
    padding: 24px 16px;
  }
}

/* Sibling Blur System */
.interactive-grid {
  transition: var(--transition-smooth);
}
.interactive-grid:has(.card-glass:hover) .card-glass:not(:hover) {
  opacity: 0.4;
  filter: blur(4px) grayscale(30%);
  transform: scale(0.96) translateZ(-20px);
}

/* 3D Gallery Stack Slider styling */
.stack-scene {
  width: 100%;
  max-width: 440px;
  height: 330px;
  margin: 30px auto;
  position: relative;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-card {
  position: absolute;
  width: 100%;
  max-width: 380px;
  height: 280px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-bg-secondary);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, z-index 0.6s ease;
  cursor: pointer;
  transform-origin: center bottom;
}
.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg, rgba(7, 7, 9, 0.95) 0%, transparent 100%);
  padding: 16px 20px;
  color: #fff;
  transition: var(--transition-smooth);
}
.stack-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.stack-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Layering depth presets - centered upward stack for zero mobile overflow */
.stack-card.pos-0 {
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 3;
  opacity: 1;
}
.stack-card.pos-1 {
  transform: translate3d(0, -15px, -30px) scale(0.94);
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
}
.stack-card.pos-2 {
  transform: translate3d(0, -30px, -60px) scale(0.88);
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
.stack-card.pos-hidden {
  transform: translate3d(0, -45px, -90px) scale(0.8);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.stack-card.pos-sweep {
  transform: translate3d(-150%, 0, 30px) rotate(-12deg) scale(0.9);
  z-index: 4;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 480px) {
  .stack-scene {
    height: 290px;
    margin: 30px auto 10px auto;
  }
  .stack-card {
    max-width: 300px;
    height: 220px;
  }
}

/* Workout Simulator Widget styling */
.simulator-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ecg-container {
  height: 70px;
  background: #000;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  position: relative;
  overflow: hidden;
}
.ecg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(189, 255, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 255, 0, 0.04) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}
.ecg-path {
  fill: none;
  stroke: var(--color-accent-gold);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: ecgSweep 4s linear infinite;
  filter: drop-shadow(0 0 5px var(--color-accent-gold));
}
@keyframes ecgSweep {
  to { stroke-dashoffset: 0; }
}

.simulator-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sim-metric {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 14px;
  text-align: center;
}
.sim-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sim-label {
  font-size: 11px;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.simulator-controls {
  display: flex;
  gap: 12px;
}
.sim-program-select {
  flex-grow: 1;
}

