:root {
  --navy: #1e1b26;
  --ink: #121018;
  --cream: #f6f3ec;
  --lime: #d1ff4e;
  --muted: #8b8798;
  --card: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--navy); font-family: "DM Sans", system-ui, sans-serif; }
body { min-height: 100vh; display: flex; flex-direction: column; }
a { color: inherit; text-decoration: none; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 8vw;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.brand em { font-style: normal; color: #5540d7; }
.mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: #5540d7; color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
nav { display: flex; gap: 22px; font-weight: 600; font-size: 14px; color: var(--muted); }
nav a:hover { color: var(--navy); }

main { flex: 1; padding: 48px 8vw 80px; max-width: 1180px; }
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 48px;
}
.hero-art {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}
.eyebrow { color: #5540d7; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: 12px; margin-bottom: 12px; }
h1 { font-size: clamp(28px, 4.4vw, 44px); line-height: 1.1; letter-spacing: -.02em; }
.lead { margin: 18px 0 0; max-width: 520px; color: var(--muted); font-size: 18px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card {
  background: var(--card);
  border-radius: 22px;
  padding: 24px;
  display: block;
  box-shadow: 0 10px 30px rgba(18, 16, 24, .06);
  transition: transform .15s ease;
}
.card:hover { transform: translateY(-3px); }
.card h2 { font-size: 28px; margin: 10px 0 8px; }
.card p { color: var(--muted); line-height: 1.45; }
.tag {
  display: inline-block;
  background: var(--lime);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}
.tag.soon { background: #eceaf2; color: var(--muted); }
.url { display: block; margin-top: 18px; font-size: 13px; font-weight: 600; color: #5540d7; }

footer {
  padding: 20px 8vw 28px;
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 640px) {
  nav { display: none; }
  header, main, footer { padding-left: 22px; padding-right: 22px; }
}
