html, body {
  margin: 0;
  padding: 0;
  background: #141414;
}

body {
  font-family: 'Archivo', sans-serif;
  color: #F2F0EB;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: #7C8AFF;
  color: #141414;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

.brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.subtle {
  font-size: 13px;
  color: #8A867E;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero {
  padding: 96px 40px 88px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hero-title .accent {
  color: #7C8AFF;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  max-width: 440px;
  margin: 32px 0 0;
  color: #B8B4AC;
  text-wrap: pretty;
}

.main {
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px 120px;
  box-sizing: border-box;
}

.index-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 48px;
}

.rule {
  flex: 1;
  border-bottom: 1px solid #3A3A3A;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 72px 56px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: inherit;
}

.card:hover .plate {
  transform: rotate(-1deg) translateY(-4px);
}

.plate {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.plate-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.plate-initials {
  font-family: 'Archivo Black', sans-serif;
  font-size: 120px;
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  padding: 0 12px;
  margin-bottom: -8px;
  white-space: nowrap;
}

.plate-num {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

.plate-new {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: #F2F0EB;
  color: #141414;
  padding: 3px 8px;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.card-title .arrow {
  font-weight: 500;
}

.card-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #A8A49C;
  text-wrap: pretty;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: #8A867E;
}

.card-meta .tag-line {
  color: #6E6A63;
}

.footer {
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #8A867E;
}
