/* orion.html specific styles */

.hero { position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(100, 140, 255, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(120, 80, 255, 0.06) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

.subtitle { font-family: var(--mono); color: #555; font-size: 14px; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
h1 em { color: var(--orange); font-style: italic; }

.orion-desc { font-size: 1.2rem; color: var(--text-dim); max-width: 700px; margin-bottom: 3rem; line-height: 1.7; }

/* Terminal demo */
.terminal-window {
  background: #050505;
  border: 1px solid #222;
  margin: 4rem auto;
  max-width: 700px;
  text-align: left;
}
.term-header {
  display: flex; align-items: center; gap: 10px;
  padding: 0.8rem 1.5rem;
  border-bottom: 1px solid #1a1a1a;
  font-family: var(--mono); font-size: 10px; color: #555;
}
.term-dots { display: flex; gap: 6px; }
.term-dot { width: 10px; height: 10px; border-radius: 50%; background: #333; }
.term-dot.orange { background: var(--orange); }
.term-body { padding: 2rem; font-family: var(--mono); font-size: 13px; line-height: 1.8; color: #aaa; }
.term-prompt { color: var(--orange); }
.term-cmd { color: #e0e0e0; }

/* Feature grid override for orion */
.feature-grid { margin: 4rem 0; }
.feature-card { background: rgba(100, 140, 255, 0.02); border-color: rgba(100, 140, 255, 0.15); }
.feature-card:hover { border-color: rgba(100, 140, 255, 0.4); background: rgba(100, 140, 255, 0.04); }

/* Specs section */
.specs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: #1a1a1a;
  margin: 4rem auto;
  max-width: 800px;
  border: 1px solid #1a1a1a;
}
.spec-item {
  background: #0a0a0a;
  padding: 2.5rem 2rem;
  text-align: center;
}
.spec-label { font-family: var(--mono); font-size: 9px; color: #555; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.spec-value { font-family: var(--mono); font-size: 13px; color: var(--cream); }

@media (max-width: 992px) {
  .hero { padding: 6rem 2rem; height: auto; min-height: 70vh; }
  .orion-desc { font-size: 1rem; }
}
