/* PLiNKSTREAM Family Standard Stylesheet */

body {
  background: #f7f7f9;
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #222;
}

.lander-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.lander-frame {
  background: #fff;
  margin: 32px 0;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.06);
  width: 100%;
  max-width: 420px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  min-height: 80vh;
}

.lander-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 32px 0 32px;
}

.logo-space {
  width: 56px;
  height: 56px;
  background: none;
}

.lander-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
}

.lander-nav a {
  color: #222;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.lander-nav a:hover {
  opacity: 1;
}

.lander-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 24px 32px 0 32px;
}

.ui-packet {
  background: #f3f4f7;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
  border: 1px solid #e3e5ea;
}

.packet-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}
.status-dot.active { background: #2ecc40; }
.status-dot.dev { background: #ffb400; }
.status-dot.down { background: #e74c3c; }

.packet-title {
  font-weight: 600;
  font-size: 1.08rem;
}

.packet-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 0.98rem;
}

.lander-footer {
  text-align: center;
  color: #b0b3b8;
  font-size: 0.95rem;
  padding: 32px 0 18px 0;
  border-top: 1px solid #ececec;
  margin-top: 32px;
}
.lander-footer a {
  color: #b0b3b8;
  text-decoration: none;
  margin: 0 10px;
  opacity: 0.85;
}
.lander-footer a:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .lander-frame {
    max-width: 100vw;
    min-width: 0;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }
  .lander-header, .lander-main {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* VacantSEE Waterfall (matches LintZERO) */
.vs-waterfall {
  margin-top: 10px;
  margin-bottom: 2px;
}
.vs-waterfall details {
  border: 1px solid #e3e5ea;
  border-radius: 8px;
  background: #f8fafd;
  padding: 0;
  font-size: 0.98rem;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
}
.vs-waterfall summary {
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
  color: #222;
  border-radius: 8px;
  outline: none;
  list-style: none;
}
.vs-waterfall pre {
  margin: 0;
  padding: 14px 18px 16px 18px;
  background: none;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.98rem;
  color: #222;
  white-space: pre-line;
  border-radius: 0 0 8px 8px;
}
