:root {
  color-scheme: dark;
  --bg: #0b0c0f;
  --panel: #141414;
  --card: #1a1a1a;
  --ink: #e6e9ef;
  --muted: #9ea3af;
  --border: #232323;
  --accent: #a855f7;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

.page {
  width: min(880px, 100%);
  padding: 48px clamp(20px, 6vw, 64px) 64px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.brand-icon {
  width: 32px;
  height: 32px;
  display: block;
  padding: 4px;
  border-radius: 8px;
  background: #050505;
  border: 1px solid #2a2a2a;
}

.brand-word {
  display: inline-block;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: lowercase;
  color: #e5e5e5;
  position: relative;
  background: linear-gradient(90deg, rgba(229, 229, 229, 0.9) 0%, rgba(229, 229, 229, 0.6) 60%, rgba(229, 229, 229, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  padding-top: clamp(32px, 10vh, 96px);
}

.hero {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 56px);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
}

.eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
}

.lede {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 13px;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

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

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 24px;
  color: var(--muted);
}

.card a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(229, 231, 235, 0.2);
  padding-bottom: 2px;
}

footer {
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }
  main {
    padding-top: 32px;
  }
}
