:root {
  --bg: #07110d;
  --panel: #0a1611;
  --fg: #cfe8d6;
  --muted: rgba(207, 232, 214, 0.68);
  --line: rgba(207, 232, 214, 0.12);

  --ink: #bfe9c8;
  --emerald: #2db36f;
  --gold: #e6d7b7;

  --radius: 16px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --serif: ui-serif, "Georgia", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(80% 60% at 50% 10%, rgba(191, 233, 200, 0.08), rgba(7, 17, 13, 0) 55%),
              radial-gradient(100% 80% at 50% 30%, rgba(45, 179, 111, 0.10) 5.46%, rgba(7, 17, 13, 1) 46.64%),
              var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  line-height: 1.5;
}

.wrap {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 0 0 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.1;
}

.topbar .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(45, 179, 111, 0.85);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.88); opacity: 0.45; }
  100% { transform: scale(1); opacity: 1; }
}

.hero {
  text-align: center;
  padding: 32px 18px 10px;
}

.mark {
  margin: 0 auto 14px;
  width: min(280px, 58vw);
  color: var(--ink);
  filter: drop-shadow(0 26px 64px rgba(191, 233, 200, 0.12));
}

.mark svg {
  display: block;
  width: 100%;
  height: auto;
}

.group h1 {
  margin: 0;
  line-height: 1.1;
  font: 650 34px/1.1 var(--serif);
  letter-spacing: 0.02em;
  color: rgba(207, 232, 214, 0.92);
}

.sub {
  margin: 8px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(207, 232, 214, 0.60);
}

.hero-statement {
  margin: 18px auto 0;
  max-width: 66ch;
  color: rgba(230, 215, 183, 0.95);
  font-size: 18px;
  line-height: 1.4;
}

.lede {
  margin: 14px auto 0;
  max-width: 72ch;
  color: rgba(207, 232, 214, 0.86);
  font-size: 14px;
}

.cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(207, 232, 214, 0.16);
  background: rgba(10, 22, 17, 0.45);
  color: rgba(207, 232, 214, 0.92);
  text-decoration: none;
  font-weight: 800;
}

.btn:hover {
  border-color: rgba(45, 179, 111, 0.55);
  transform: translateY(-1px);
}

.btn.primary {
  background: rgba(45, 179, 111, 0.14);
  border-color: rgba(45, 179, 111, 0.45);
}

.panel {
  margin: 24px auto 0;
  max-width: 880px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 22, 17, 0.5);
  padding: 18px;
}

.k {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(207, 232, 214, 0.55);
  margin-bottom: 10px;
}

.lines .line {
  padding: 6px 0;
  border-top: 1px dashed rgba(207, 232, 214, 0.10);
}

.lines .line:first-child {
  border-top: 0;
}

.section {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 22, 17, 0.30);
  padding: 16px;
}

.section h2 {
  margin: 0 0 12px;
  font: 650 20px/1.2 var(--serif);
  color: rgba(230, 215, 183, 0.95);
}

.section p {
  margin: 0;
  color: rgba(207, 232, 214, 0.84);
  font-size: 14px;
}

.section-intro {
  margin-bottom: 12px;
}

.section-note {
  margin-top: 12px !important;
  color: rgba(207, 232, 214, 0.72) !important;
  font-size: 13px !important;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.entry-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(10, 22, 17, 0.46);
  padding: 14px;
}

.entry-card h3,
.start-item h3 {
  margin: 0 0 8px;
  font: 650 17px/1.2 var(--serif);
  color: rgba(207, 232, 214, 0.92);
}

.entry-card p,
.start-item p {
  margin: 0;
  color: rgba(207, 232, 214, 0.8);
  font-size: 13px;
}

.entry-card a,
.start-item a,
.foot a,
.pub-content a {
  color: rgba(45, 179, 111, 0.92);
  text-decoration: none;
  border-bottom: 1px dotted rgba(45, 179, 111, 0.45);
  font-weight: 800;
}

.entry-card a,
.start-item h3 a {
  display: inline-block;
  margin-top: 10px;
}

.entry-card a:hover,
.start-item a:hover,
.foot a:hover,
.pub-content a:hover {
  color: rgba(230, 215, 183, 0.92);
  border-bottom-color: rgba(230, 215, 183, 0.55);
}

.start-list {
  display: grid;
  gap: 10px;
}

.start-item {
  border-top: 1px dashed rgba(207, 232, 214, 0.18);
  padding-top: 12px;
}

.start-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.start-item .what {
  margin-bottom: 6px;
}

.start-item .why {
  color: rgba(207, 232, 214, 0.74);
}

.section-archive {
  background: rgba(10, 22, 17, 0.24);
}

.publications {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.pub-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  border-top: 1px dashed rgba(207, 232, 214, 0.15);
  padding-top: 16px;
}

.pub-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.pub-thumb {
  width: 120px;
  height: auto;
  border-radius: 6px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.pub-item:hover .pub-thumb {
  opacity: 1;
}

.pub-content {
  max-width: 720px;
}

.pub-content strong {
  color: rgba(230, 215, 183, 0.92);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

.archive-note {
  margin-top: 2px;
}

.foot {
  margin-top: 22px;
  padding: 14px 0 0;
  text-align: center;
  color: rgba(207, 232, 214, 0.62);
}

.foot .closing-line {
  margin: 0 0 12px;
  color: rgba(207, 232, 214, 0.78);
  font-size: 13px;
}

.foot .links {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .entry-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 14px 14px 6px;
  }

  .group h1 {
    font-size: 28px;
  }

  .hero-statement {
    font-size: 16px;
  }

  .pub-item {
    flex-direction: column;
  }

  .pub-thumb {
    width: 100%;
    max-width: 320px;
  }
}
