@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0b0b0e;
  color: #e6e6ee;
  font-family: 'Space Grotesk', sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }

.page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 28px 88px;
}

.hero {
  margin-bottom: 68px;
  animation: fadeUp 0.5s ease both;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.7 0.15 145);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 15px;
  color: #52525f;
  line-height: 1.6;
}

.category { margin-bottom: 48px; }

.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #18181f;
}

.category-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.category-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-count {
  font-size: 11px;
  color: #32323e;
  font-weight: 600;
  background: #141418;
  padding: 1px 8px;
  border-radius: 20px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 8px;
}

.link-card {
  display: block;
  background: #111115;
  border: 1px solid #1c1c24;
  border-radius: 10px;
  padding: 16px 18px 16px 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.16s ease;
}

.link-card:hover {
  background: #18181f;
  border-color: #2e2e3c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.link-card-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  border-radius: 10px 0 0 10px;
  opacity: 0.7;
}

.link-card-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.link-card-text {
  min-width: 0;
  flex: 1;
  display: block;
}

.link-card-name {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #e8e8f0;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-card-domain {
  display: block;
  font-size: 10.5px;
  color: #3a3a48;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-icon {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.4;
}

.page-footer {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid #14141a;
  text-align: center;
}

.page-footer p {
  font-size: 10px;
  color: #222230;
  letter-spacing: 0.14em;
  font-weight: 600;
}
