/* ===== Bora Landing Page - High-Tech Cyber Design System ===== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #030712;
  --bg-dark-alt: #090e1a;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-glow: rgba(99, 102, 241, 0.25);
  
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.25);
  
  --teal: #06b6d4;
  --teal-glow: rgba(6, 182, 212, 0.2);
  
  --success: #10b981;
  --success-glow: rgba(16, 185, 129, 0.2);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 25px rgba(99, 102, 241, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.05) 0%, transparent 40%);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography & Links */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(3, 7, 18, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  position: relative;
}

.logo-icon-svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  filter: drop-shadow(0 0 8px var(--primary));
}

.logo-text {
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--purple));
  transition: var(--transition);
  border-radius: var(--radius-full);
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 2.25rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.4);
}

.btn-success {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--success-glow);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: var(--primary-glow);
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-glow-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 90%;
  background: 
    radial-gradient(circle at 65% 30%, var(--primary-glow) 0%, transparent 60%),
    radial-gradient(circle at 55% 45%, var(--purple-glow) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

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

.badge-ai {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.badge-ai i {
  color: var(--teal);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--teal)); }
  100% { transform: scale(1.2); filter: drop-shadow(0 0 8px var(--teal)); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 80%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.75rem;
  max-width: 620px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

/* Phone Mockup / Visual layout */
.hero-visual {
  display: flex;
  justify-content: center;
}

.mockup-container {
  perspective: 1500px;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background-color: #0b0f19;
  border-radius: 40px;
  padding: 11px;
  box-shadow: 
    0 25px 60px -15px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(99, 102, 241, 0.15);
  border: 4px solid #1f293d;
  position: relative;
  transform: rotateY(-12deg) rotateX(8deg);
  transition: var(--transition);
}

.phone-mockup:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 30px 70px -10px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(99, 102, 241, 0.25);
}

.phone-notch {
  width: 140px;
  height: 25px;
  background-color: #1f293d;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

.phone-content {
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark-alt);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255,255,255,0.03);
}

/* Phone UI Elements */
.app-header {
  height: 55px;
  background-color: rgba(9, 14, 26, 0.8);
  backdrop-filter: blur(8px);
  padding: 1.75rem 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--card-border);
}

.app-logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.app-logo span {
  color: var(--primary);
}

.app-status {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.app-map {
  flex: 1;
  background-color: #0b0f1b;
  position: relative;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: 
    radial-gradient(rgba(255,255,255,0.15) 1px, transparent 0), 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px, 24px 24px;
}

.map-pin {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
  z-index: 5;
}

.map-pin::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.4;
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-pin.origin {
  background-color: var(--primary);
  top: 30%;
  left: 25%;
  box-shadow: 0 0 10px var(--primary);
}

.map-pin.dest {
  background-color: var(--success);
  top: 60%;
  left: 70%;
  box-shadow: 0 0 10px var(--success);
}

.pin-dot {
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
}

.map-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.map-route path {
  animation: dash 15s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -100;
  }
}

/* App Simulation floating card */
.app-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(9, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 5;
}

.ai-pulse-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
}

.ai-pulse-bar span {
  font-size: 0.65rem;
  font-weight: 700;
  color: #e9d5ff;
}

.ai-voice-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 10px;
}

.ai-voice-wave span {
  display: block;
  width: 2px;
  height: 40%;
  background-color: var(--purple);
  border-radius: var(--radius-full);
  animation: wave 1s ease-in-out infinite alternate;
}

.ai-voice-wave span:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.ai-voice-wave span:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.ai-voice-wave span:nth-child(4) { height: 50%; animation-delay: 0.45s; }

@keyframes wave {
  0% { transform: scaleY(0.4); }
  100% { transform: scaleY(1); }
}

.app-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-card-details {
  text-align: left;
}

.app-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.app-card-subtitle {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.app-card-badge {
  background-color: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
}

/* KPI / Metrics Section */
.section-kpi {
  background-color: var(--bg-dark-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 4rem 0;
  position: relative;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.kpi-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.01);
  border: 1px solid transparent;
  transition: var(--transition);
}

.kpi-card:hover {
  background: rgba(255,255,255,0.02);
  border-color: var(--card-border);
  transform: translateY(-3px);
}

.kpi-val {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 70%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.kpi-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.kpi-desc {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* Section styling standard */
.section {
  padding: 8rem 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-main);
  background: linear-gradient(135deg, #ffffff 60%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* Feature grid items */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.items-center { align-items: center; }

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 3rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 25px rgba(99, 102, 241, 0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.feature-icon.bg-indigo {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
}

.feature-icon.bg-purple {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
}

.feature-icon.bg-teal {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: #22d3ee;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Interactive AI Simulation Section */
.sim-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.sim-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.sim-info {
  text-align: left;
}

.sim-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.sim-tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
}

.sim-tab-btn {
  flex: 1;
  padding: 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sim-tab-btn:hover {
  color: var(--text-main);
  background: rgba(255,255,255,0.02);
}

.sim-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.sim-tab-content {
  display: none;
}

.sim-tab-content.active {
  display: block;
  animation: fade-in 0.4s ease-out forwards;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.sim-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sim-feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.sim-feature-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sim-feature-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.sim-feature-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Simulation Visual Dashboard Screen */
.sim-visual {
  width: 100%;
  background: #090e1a;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.sim-visual-header {
  height: 50px;
  background: rgba(3, 7, 18, 0.7);
  border-bottom: 1px solid var(--card-border);
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sim-visual-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sim-visual-title span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
}

.sim-window-dots {
  display: flex;
  gap: 0.35rem;
}

.sim-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}

.sim-visual-body {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
}

/* Simulator Maps / Subcomponents */
.sim-map-container {
  flex: 1.2;
  background: #050811;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--card-border);
}

.sim-heat {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: heartbeat 3s infinite alternate;
}

.sim-heat.h-1 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: 25%;
  left: 20%;
}

.sim-heat.h-2 {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: 55%;
  left: 60%;
  animation-delay: 1.5s;
}

@keyframes heartbeat {
  0% { transform: scale(0.9); opacity: 0.35; }
  100% { transform: scale(1.15); opacity: 0.55; }
}

.sim-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.sim-radar::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 102, 241, 0.03);
  border-radius: 50%;
  transform: scale(0.6);
}

.sim-radar::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 102, 241, 0.02);
  border-radius: 50%;
  transform: scale(0.3);
}

.sim-car-pointer {
  position: absolute;
  top: 38%;
  left: 32%;
  width: 20px;
  height: 20px;
  z-index: 10;
  filter: drop-shadow(0 0 6px var(--primary));
}

.sim-car-pointer svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

/* Sidebar / Info side of Sim */
.sim-side-panel {
  flex: 0.8;
  padding: 1.25rem;
  background: rgba(9, 14, 26, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  overflow-y: auto;
}

.sim-panel-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
}

.sim-panel-title {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sim-panel-title i {
  font-size: 0.95rem;
}

.sim-attraction-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.sim-attraction-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}

.sim-attraction-info {
  text-align: left;
}

.sim-attraction-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.sim-attraction-desc {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* Media feed simulator (YouTube & news) */
.sim-media-item {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.sim-media-thumb {
  width: 50px;
  height: 35px;
  background: rgba(255,0,0,0.1);
  border: 1px solid rgba(255,0,0,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.sim-media-details {
  text-align: left;
}

.sim-media-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.sim-media-source {
  font-size: 0.6rem;
  color: var(--text-dark);
}

/* Safety Section Shield Graphic */
.visual-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.shield-glow-effect {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-glow);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.shield-graphic {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.shield-main {
  width: 100px;
  height: 100px;
  color: var(--primary);
  filter: drop-shadow(0 0 15px var(--primary-glow));
  z-index: 3;
}

.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(99, 102, 241, 0.2);
}

.ring-1 {
  width: 140px;
  height: 140px;
  animation: rotate-cw 25s linear infinite;
}

.ring-2 {
  width: 170px;
  height: 170px;
  border-color: rgba(168, 85, 247, 0.1);
  animation: rotate-ccw 35s linear infinite;
}

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

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

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.features-list i {
  color: var(--primary);
  flex-shrink: 0;
}

/* Footer styling */
.footer {
  background-color: #02040a;
  border-top: 1px solid var(--card-border);
  padding: 6rem 0 0;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--card-border);
}

.footer-brand {
  text-align: left;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}

.footer-links-col h4 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.footer-links-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links-col a:hover {
  color: var(--text-main);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.825rem;
  color: var(--text-dark);
  background-color: #010206;
}

/* Cookie Consent Banner (Dark Cyber Theme) */
.cookie-banner-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1000;
  background: rgba(9, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 15px 40px -10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(99, 102, 241, 0.08);
  padding: 1.25rem 2rem;
  animation: slide-up-cookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-text {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: pulse-glow 2s infinite alternate;
}

.cookie-banner-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-title);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-primary {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.cookie-btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.cookie-btn-outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.cookie-btn-outline:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
  .hero-container {
    gap: 3rem;
  }
  .sim-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 2.5rem;
  }
  .sim-visual {
    height: 440px;
  }
}

@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 1.25rem 0;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-actions {
    width: 100%;
    justify-content: center;
  }
  
  .hero {
    padding: 9rem 0 4rem;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .footer-links-col {
    align-items: center;
  }
  
  .cookie-banner-container {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 1.25rem;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .cookie-banner-actions {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}
