:root {
  --bg: #f4eee6;
  --ink: #1a2438;
  --muted: #5b6578;
  --line: rgba(15, 28, 52, 0.12);
  --card: #ffffff;
  --violet: #4e3978;
  --gold: #b17a2a;
  --shadow: 0 20px 40px rgba(13, 23, 44, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 214, 163, 0.45), transparent 36%),
    radial-gradient(circle at 82% 14%, rgba(165, 141, 219, 0.24), transparent 33%),
    var(--bg);
}

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

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
}

.brand-link {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--violet);
}

.page-wrap {
  width: min(1100px, 92vw);
  margin: 24px auto 70px;
  display: grid;
  gap: 26px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: linear-gradient(130deg, #fefaf4 10%, #f7efe4 60%, #f4e8dc 100%);
  box-shadow: var(--shadow);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(12px);
  animation: floaty 6s ease-in-out infinite;
}

.hero-glow.one {
  width: 150px;
  height: 150px;
  background: rgba(255, 193, 113, 0.25);
  top: -40px;
  right: 16%;
}

.hero-glow.two {
  width: 220px;
  height: 220px;
  background: rgba(102, 83, 155, 0.18);
  bottom: -90px;
  left: -50px;
  animation-delay: -2s;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.04;
  color: var(--violet);
}

.sub {
  margin: 0;
  color: #39485f;
  font-size: 15px;
  max-width: 52ch;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(120deg, #6d4faf, #4e3978);
}

.btn.ghost {
  color: #4e3978;
  border: 1px solid rgba(78, 57, 120, 0.3);
  background: rgba(255, 255, 255, 0.75);
}

.hero-art {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(14, 24, 46, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(14, 24, 46, 0.12);
}

.tag {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #7b4c10;
  background: rgba(255, 203, 133, 0.35);
}

.card h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.assets-note {
  background: rgba(255, 255, 255, 0.86);
  border: 1px dashed rgba(78, 57, 120, 0.32);
  border-radius: 16px;
  padding: 16px;
}

.assets-note h2 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--violet);
}

.assets-note p {
  margin: 0;
  color: var(--muted);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  background: rgba(78, 57, 120, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-art {
    max-height: 340px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
}
