/* ==========================================================================
   AuraOS — CYBER DARK DESIGN SYSTEM STYLES
   ========================================================================== */
.aos-page{
  background-color: #09070f;
  color: #e2e0e7;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.aos-section{
  padding: 6rem 0;
  background-color: #09070f;
  position: relative;
}

.aos-section--light{
  background-color: #0d0a17;
}

.aos-section--border{
  border-top: 1px solid rgba(168, 85, 247, 0.1);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.aos-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.aos-tag{
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a855f7;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.aos-title{
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.aos-title em{
  font-style: italic;
  font-weight: 300;
  color: #a855f7;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.aos-subtitle{
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: #9ca3af;
  line-height: 1.6;
  max-width: 650px;
  margin-bottom: 3rem;
}

.aos-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.aos-btn--cyber{
  background-color: #a855f7;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.aos-btn--cyber:hover{
  background-color: #b55fe6;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
}

.aos-btn--outline{
  background-color: transparent;
  color: #e2e0e7 !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.aos-btn--outline:hover{
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Hero Grid */
.aos-hero{
  padding: 8rem 0;
  position: relative;
}

.aos-hero-glow{
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.aos-hero-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aos-hero-actions{
  display: flex;
  gap: 1.5rem;
}

/* System Terminal */
.aos-system-terminal{
  background: #06040a;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 30px rgba(168, 85, 247, 0.05);
  overflow: hidden;
  font-family: monospace;
}

.aos-terminal-header{
  background: #0f0d16;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aos-terminal-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.aos-terminal-dot--red{ background: #ef4444; }

.aos-terminal-dot--yellow{ background: #eab308; }

.aos-terminal-dot--green{ background: #22c55e; }

.aos-terminal-title{
  color: #6b7280;
  font-size: 0.75rem;
  margin-left: 12px;
}

.aos-terminal-body{
  padding: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aos-code-line{
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.5;
}

.aos-code-prompt{
  color: #a855f7;
  margin-right: 8px;
}

.aos-code-green{ color: #22c55e; }

.aos-code-purple{ color: #a855f7; }

.aos-code-cyber{
  color: #c084fc;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.aos-code-line--flicker{
  animation: code-flicker 2s infinite ease-in-out;
}

/* Features Grid */
.aos-section-header{
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}

.aos-section-title{
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}

.aos-section-desc{
  color: #9ca3af;
}

.aos-features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.aos-feature-card{
  background: #0d0a17;
  border: 1px solid rgba(168, 85, 247, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.aos-feature-card:hover{
  transform: translateY(-4px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 12px 30px rgba(168, 85, 247, 0.05);
}

.aos-feature-icon{
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.aos-feature-title{
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.aos-feature-desc{
  font-size: 0.9rem;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

/* SDK Mock Grid */
.aos-sdk-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.aos-sdk-title{
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
}

.aos-sdk-desc{
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.aos-sdk-list{
  padding-left: 1.25rem;
  color: #9ca3af;
  margin: 0;
}

.aos-sdk-list li{
  margin-bottom: 1rem;
  line-height: 1.5;
}

.aos-sdk-list strong{
  color: #fff;
}

/* Code Window */
.aos-code-window{
  background: #050308;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.aos-code-header{
  background: #0d0a14;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.aos-code-file{
  font-family: monospace;
  font-size: 0.75rem;
  color: #9ca3af;
}

.aos-code-lang{
  font-size: 0.75rem;
  color: #6b7280;
}

.aos-code-block{
  padding: 24px;
  margin: 0;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #a7a9be;
}

.code-kw{ color: #f43f5e; }

.code-cl{ color: #38bdf8; }

.code-str{ color: #10b981; }

.code-comment{ color: #6b7280; font-style: italic; }

/* CTA Section */
.aos-section--cta{
  padding: 8rem 0;
  position: relative;
  background-color: #07050d;
}

.aos-cta-bg{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(168,85,247,0.1) 0%, transparent 60%);
  z-index: 1;
}

.aos-cta-title{
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5rem;
}

.aos-cta-desc{
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
