@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600;8..60,700&display=swap");

:root {
  --navy: #0b1020;
  --gold: #d4af37;
  --gold-hi: #f3d77a;
  --cream: #f4efe4;
  --muted: #a8b0c4;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; background: var(--navy); color: var(--cream); }
body { font-family: var(--sans); min-height: 100vh; }

/* top brand — matches home lockup */
.lyknss-bar {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 28px 6px;
}
.lyknss-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.lyknss-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 0;
  object-fit: contain;
}
.lyknss-word {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-wrap: wrap;
  line-height: 1;
}
.lyknss-word .name {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.lyknss-word .tld {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold);
  margin-right: 14px;
}
.lyknss-word .say {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

header.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 28px 8px;
  max-width: 1440px;
  margin: 0 auto;
}
.brand { font-family: var(--serif); font-size: 28px; letter-spacing: .02em; }
.tag { color: var(--muted); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }

.layout {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(340px, 1.15fr) minmax(280px, 1fr);
  gap: 18px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 22px 36px;
  align-items: start;
}
.col { min-width: 0; }
.about { font-family: var(--sans); color: var(--cream); }
.about h2 {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  margin: 0 0 12px;
}
.about p { line-height: 1.55; font-size: 16.5px; margin: 0 0 14px; }
.about .source { font-family: var(--sans); font-size: 12px; color: var(--muted); margin-top: 18px; }
.about .source a { color: var(--gold-hi); }
.hub-wrap { display: flex; flex-direction: column; align-items: center; }
spoke-hub { display: block; width: 100%; max-width: 520px; }
.legend { color: var(--muted); font-size: 12px; letter-spacing: .06em; margin-top: 6px; }

.panel {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 14px;
  padding: 16px 16px 10px;
  min-height: 420px;
}
.panel-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.panel-head .mini {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gold);
  display: grid; place-items: center; overflow: hidden; flex: 0 0 34px;
}
.panel-head .mini svg,
.panel-head .mini img {
  width: 20px; height: 20px; max-width: 20px; max-height: 20px;
  object-fit: contain;
}
.panel-head h2 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: .04em; font-family: var(--sans); }
.item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(168,176,196,.18);
  text-decoration: none;
  color: inherit;
  font-family: var(--sans);
}
.item:first-of-type { border-top: 0; }
.item img { width: 92px; height: 68px; max-width: 92px; max-height: 68px; object-fit: contain; border-radius: 6px; background: #151b30; }
.item .t { font-size: 14.5px; font-weight: 600; line-height: 1.25; color: var(--cream); }
.item .d { font-size: 12px; color: var(--gold); margin: 2px 0 0; }
.item .s { font-size: 13px; color: var(--muted); line-height: 1.4; margin: 0; }

footer.page-links,
footer.lyknss-foot {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 28px 12px;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--sans);
}
footer.page-links a,
footer.lyknss-foot a { color: var(--gold-hi); }
footer.lyknss-foot {
  padding-bottom: 28px;
  letter-spacing: .04em;
}

.hero { max-width: 720px; margin: 48px auto; padding: 0 24px; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: 42px; margin: 18px 0 8px; }
.hero .say { color: var(--gold); letter-spacing: .18em; text-transform: uppercase; font-size: 12px; }
.hero p { color: var(--muted); line-height: 1.55; }
.people { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.people a { color: var(--gold-hi); text-decoration: none; }

/* network home */
.home { max-width: 1080px; margin: 0 auto; padding: 12px 28px 48px; }
.home-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
  margin: 18px 0 36px;
}
.home-hero h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.home-hero h1 em { color: var(--gold); font-style: normal; }
.home-hero .lede { color: var(--muted); font-size: 18px; line-height: 1.5; margin: 0 0 18px; }
.places { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.places li {
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold-hi);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  letter-spacing: .04em;
}
.home-mark {
  width: min(280px, 70%);
  margin: 0 auto;
  display: block;
}
.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 8px 0 36px;
}
.home-split h2,
.home-close h2 {
  font-family: var(--sans);
  font-size: 22px;
  margin: 0 0 12px;
}
.home-split p { color: var(--muted); line-height: 1.55; margin: 0 0 12px; }
.home-split .quiet { color: var(--cream); font-weight: 600; }
.home-split .sweet,
.home-close .sweet { color: var(--gold-hi); }
.home-close { text-align: center; margin: 8px 0 36px; }
.home-dir {
  max-width: 1440px;
  margin: 8px auto 0;
  padding: 8px 0 48px;
}
.home-dir h2 {
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin: 0 0 8px;
}
.home-dir .dir-lede {
  color: var(--muted);
  max-width: 46em;
  margin: 0 0 22px;
  line-height: 1.5;
}
.disclaimer {
  max-width: 46em;
  margin: 36px 0 8px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.samples-label {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 14px;
}
.samples {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 22px 16px;
}
.samples a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.samples img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: #151b30;
}
.samples strong { display: block; text-align: center; font-size: 14px; }
.samples em {
  display: block;
  text-align: center;
  font-style: normal;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .home-hero, .home-split { grid-template-columns: 1fr; }
}

/* 404 miss */
.miss {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 28px 48px;
}
.miss-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 280px);
  gap: 36px;
  align-items: center;
  margin: 12px 0 40px;
}
.miss-code {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.miss-hero h1 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.miss-hero .lede {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 36em;
}
.miss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.miss-actions .go {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
}
.miss-actions .go:hover { background: var(--gold-hi); }
.miss-actions .alt {
  color: var(--gold-hi);
  text-decoration: none;
  font-size: 14px;
}
.miss-ring {
  width: min(260px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  padding: 8px;
  background: conic-gradient(from 200deg, #d4af37, #7a6418, #f3d77a, #d4af37);
}
.miss-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--sans);
  font-size: clamp(56px, 10vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
}
.miss h2 {
  font-family: var(--sans);
  font-size: 22px;
  margin: 0 0 6px;
}
.miss .sweet { color: var(--gold-hi); margin: 0 0 22px; }
@media (max-width: 900px) {
  .miss-hero { grid-template-columns: 1fr; }
  .miss-ring { width: 180px; }
}
