/* intel.css — the publishing shelf and the about page's extra furniture.
 *
 * One section, three streams. The alternative was /blog, /research, /papers and
 * /press as four nav items stocking one shelf between them, which reads as an
 * empty building. Everything lives at /intel and the chips below filter it.
 *
 * Loaded only by intel.html and about.html. Everything else here still comes
 * from main.css + content.css — same tokens, same type, no second design.
 */

/* ------------------------------------------------------------------- chips */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}
.chip {
  appearance: none;
  cursor: pointer;
  padding: 9px 18px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(4, 8, 18, 0.55);
  color: var(--faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}
.chip:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.chip.is-active {
  border-color: rgba(32, 139, 255, 0.55);
  background: rgba(32, 139, 255, 0.1);
  color: #fff;
}
/* The count is a deliberate honesty signal — a chip that says "0" is better
   than a chip that filters to nothing with no warning. */
.chip__n {
  margin-left: 8px;
  color: var(--blue-soft);
  letter-spacing: 0.1em;
}

/* -------------------------------------------------------------------- feed */

.feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 14px;
  overflow: hidden;
}
.entry {
  background: rgba(4, 8, 18, 0.62);
}
.entry[hidden] {
  display: none;
}
.entry > a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 20px;
  align-items: baseline;
  padding: 24px clamp(18px, 3vw, 30px);
  color: inherit;
  transition: background 0.35s ease;
}
.entry > a:hover {
  background: rgba(255, 255, 255, 0.04);
}
.entry__kind {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.entry__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 2.1vw, 21px);
  letter-spacing: -0.015em;
}
.entry__date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--faint);
  white-space: nowrap;
}
.entry__sum {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* The zero state. Said once, plainly, then the page moves on to what is
   actually coming — which is more convincing than an apology. */
.feed--empty {
  display: block;
  padding: clamp(28px, 4vw, 42px) clamp(20px, 4vw, 40px);
  text-align: center;
  /* A filled slab reads as a broken component. Hairline outline only, so it
     reads as a reserved space rather than a card that failed to load. */
  background: none;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.1);
}
.feed--empty h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 27px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.feed--empty p {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------------------------------------------- press
 *
 * Not ours and not a nav item. A strip of outbound links that earns its place
 * only once there is something in it, so it renders as a quiet placeholder
 * rather than a logo wall with three gaps in it.
 */

.press {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  padding: 22px 26px;
  border: 1px solid var(--hair);
  border-radius: 14px;
  background: rgba(4, 8, 18, 0.5);
}
.press__label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-soft);
}
.press__note {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
}

/* ------------------------------------------------------------------ hiring
 *
 * One open-application block instead of a job board with two listings that go
 * stale. The roles line is prose so it can change without a deploy ritual.
 */

.roles {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 10px;
  max-width: 700px;
}
.roles li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}
.roles li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(32, 139, 255, 0.8);
}

/* Pull quote — the one line of culture on the page. Anything more turns into a
   values wall nobody reads. */
.creed {
  margin: 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--hair);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
