/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #0a0a0a;
  color: #e6e6e6;
  overflow-x: hidden;
}

/* Noise Layer */
.noise-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.04;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* MAIN LAYOUT */
.viewport {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1.5rem;
}

/* HEADER */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-symbol {
  background: #ffffff10;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 1.5rem;
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.75;
}

.nav-links a:hover {
  opacity: 1;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
}

.hero-title-highlight {
  color: #7aa8ff;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
}

.btn.primary {
  background: #7aa8ff;
  color: black;
}

.btn.ghost {
  border: 1px solid #7aa8ff;
}

/* SECTION */
.section {
  margin-top: 6rem;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* CARDS */
.cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: #ffffff07;
  padding: 1.5rem;
  border-radius: 8px;
  width: 30%;
}

.card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* FOOTER */
.footer {
  margin-top: 6rem;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  opacity: 0.5;
}

/* JARVIS CONSOLE */
.jarvis-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #7aa8ff;
  border: none;
  padding: 1rem;
  border-radius: 50%;
}

.jarvis-console {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 400px;
  background: #111;
  border-left: 1px solid #333;
  border-top: 1px solid #333;
  display: none;
  flex-direction: column;
}

.jarvis-console-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.jarvis-header {
  padding: 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid #333;
}

.jarvis-log {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
}

.jarvis-input-row {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
}
/* SIGNAL HUB — EXTERNAL CHANNEL ROUTER */
#hub {
  margin-top: 6rem;
  text-align: center;
}

#hub .section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#hub .section-text {
  opacity: 0.7;
  max-width: 420px;
  margin: 0 auto 2.5rem auto;
}

.hub-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hub-btn {
  display: block;
  width: 260px;
  padding: 14px;
  text-align: center;
  text-decoration: none;
  color: #0a0a0a;
  background: #e6e6e6;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s ease;
}

.hub-btn:hover {
  background: #ffffff;
}
