:root {
  --bg: #0c0e12;
  --panel: #13161c;
  --panel-2: #181c23;
  --text: #f4f6f8;
  --muted: #a9b0bb;
  --line: #2a303a;
  --accent: #f57c2d;
  --accent-soft: rgba(245, 124, 45, 0.12);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 14, 18, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand span { color: var(--accent); }
nav { display: flex; gap: 24px; }
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
}
nav a:hover, nav a:focus-visible { color: var(--text); }

.hero { padding: 96px 0 82px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.035em; }
h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}
h2 { margin: 0 0 18px; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin: 0 0 12px; font-size: 1.35rem; }
.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.actions.compact { margin-top: 26px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 750;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: #111; border-color: var(--accent); }
.button.secondary { background: var(--panel); }

.identity-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 24px 80px rgba(0,0,0,0.32);
}
.card-label { margin: 0; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.card-brand { margin: 7px 0 16px; font-size: 2.2rem; font-weight: 850; letter-spacing: -.05em; }
.status { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.status span { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: var(--accent); }

.section { padding: 84px 0; border-top: 1px solid rgba(255,255,255,.06); }
.section-alt { background: rgba(255,255,255,0.018); }
.section-intro { max-width: 790px; color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}
.card p { margin: 0; color: var(--muted); }
.card.feature { min-height: 180px; }

.collection-grid,
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.collection-grid article,
.link-grid a {
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}
.collection-grid strong,
.link-grid strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.collection-grid span,
.link-grid span { color: var(--muted); font-size: .94rem; }
.link-grid a { text-decoration: none; transition: border-color .16s ease, transform .16s ease; }
.link-grid a:hover { border-color: var(--accent); transform: translateY(-1px); }
.section-cta { margin-top: 28px; }
.section-cta a { color: var(--accent); font-weight: 750; text-decoration: none; }

.featured-collection { border-color: rgba(245, 124, 45, .45) !important; }
.collection-more { margin: 14px 0 0; }
.collection-more a { color: var(--accent); font-weight: 750; text-decoration: none; }
.collection-more a:hover { text-decoration: underline; }
.detail-hero { padding-bottom: 72px; }
.breadcrumbs { margin: 0 0 22px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span { margin: 0 7px; color: #626a76; }
.examples-grid article { min-height: 112px; }

/* Zombimals collection */
.zombimals-page {
  --zombi-green: #a9cf38;
  --zombi-green-bright: #d1ef52;
  --zombi-yellow: #f1c84a;
  --zombi-panel: #171a12;
  --zombi-line: rgba(185, 211, 74, .23);
  background:
    radial-gradient(circle at 78% 12%, rgba(123, 151, 41, .11), transparent 34rem),
    var(--bg);
}
.zombimals-page .site-header { background: rgba(12, 14, 12, .92); }
.zombimals-page nav a[aria-current="page"] { color: var(--zombi-green-bright); }
.zombi-hero { padding: 48px 0 88px; overflow: hidden; }
.zombi-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(310px, .82fr);
  align-items: center;
  gap: 72px;
}
.zombi-hero-copy h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.zombi-wordmark {
  display: block;
  width: min(100%, 600px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}
.zombi-kicker {
  margin: 20px 0 0;
  color: var(--zombi-green-bright);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.zombi-primary {
  color: #101307;
  border-color: var(--zombi-green);
  background: linear-gradient(135deg, var(--zombi-green-bright), var(--zombi-yellow));
}
.zombi-hero-art {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--zombi-line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(197,222,79,.07), rgba(19,22,16,.92));
  box-shadow: 0 34px 90px rgba(0,0,0,.4);
  transform: rotate(1.2deg);
}
.zombi-hero-art img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.zombi-hero-art figcaption {
  padding: 11px 5px 2px;
  color: var(--muted);
  font-size: .83rem;
  text-align: center;
  letter-spacing: .05em;
}
.zombi-intro-section { background: rgba(146, 173, 55, .018); }
.zombi-card { border-color: var(--zombi-line); background: var(--zombi-panel); }
.zombi-card h3 { color: #f5f7e9; }
.zombi-gallery-section { background: rgba(171, 202, 64, .025); }
.zombi-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.zombi-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--zombi-line);
  border-radius: 18px;
  background: var(--zombi-panel);
  transition: transform .2s ease, border-color .2s ease;
}
.zombi-figure:hover { transform: translateY(-2px); border-color: rgba(209, 239, 82, .48); }
.zombi-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #171811;
}
.zombi-figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 20px;
}
.zombi-figure figcaption strong { font-size: 1.05rem; }
.zombi-figure figcaption span { color: var(--muted); font-size: .87rem; text-align: right; }
.zombi-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
  align-items: start;
}
.zombi-split .section-intro { margin: 0; }
.zombi-note {
  margin: 22px 0 0;
  padding: 15px 18px;
  border-left: 3px solid var(--zombi-green);
  background: rgba(169, 207, 56, .055);
  color: #d7dcc6;
}
.zombi-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.zombi-cta h2 { margin-bottom: 10px; }
.zombi-cta p:last-child { color: var(--muted); margin-bottom: 0; }
.zombi-cta .actions { flex-shrink: 0; }

footer { padding: 34px 0 46px; border-top: 1px solid rgba(255,255,255,.06); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; font-size: .9rem; }
.footer-inner p { margin: 0; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.zombimals-page :focus-visible { outline-color: var(--zombi-green-bright); }

@media (max-width: 820px) {
  nav { display: none; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .cards.three, .cards.two, .collection-grid, .link-grid { grid-template-columns: 1fr; }
  .identity-card { max-width: 520px; }
  .footer-inner { flex-direction: column; }
  .zombi-hero { padding-top: 42px; }
  .zombi-hero-grid, .zombi-split { grid-template-columns: 1fr; gap: 38px; }
  .zombi-hero-art { max-width: 560px; transform: none; }
  .zombi-gallery { grid-template-columns: 1fr 1fr; }
  .zombi-cta { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 56px 0 62px; }
  .section { padding: 64px 0; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .zombi-hero { padding: 34px 0 62px; }
  .zombi-hero-copy h1 { font-size: 2.45rem; }
  .zombi-gallery { grid-template-columns: 1fr; }
  .zombi-figure figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
  .zombi-figure figcaption span { text-align: left; }
}
