:root {
  --bg: #0a1030;
  --ink: #f3f7ff;
  --muted: #a9b6e0;
  --cyan: #26f0ff;
  --magenta: #ff3ec8;
  --violet: #7b5cff;
  --lime: #b6ff3e;
  --gold: #ffcf3e;
  --card: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.14);
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shadow: 0 24px 60px rgba(6, 10, 40, 0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(1000px 640px at 88% -8%, rgba(255, 62, 200, 0.30), transparent 60%),
    radial-gradient(820px 560px at -8% 18%, rgba(38, 240, 255, 0.20), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, #111b4d 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.glow { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .45; pointer-events: none; z-index: 0; }
.glow--1 { width: 420px; height: 420px; background: var(--violet); top: -140px; left: 10%; }
.glow--2 { width: 380px; height: 380px; background: var(--cyan); bottom: -160px; right: 6%; }

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(52px, 9vw, 110px) 22px 60px;
}

.head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 62px); }
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--stroke);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 22px;
}
h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.grad {
  background: linear-gradient(100deg, var(--cyan), var(--lime) 45%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 24px rgba(255, 62, 200, .35));
}
.lead { color: var(--muted); font-size: clamp(15px, 1.5vw, 18px); margin-top: 20px; }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid var(--stroke);
  border-radius: 26px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card--snow:hover { border-color: var(--cyan); }
.card--capy:hover { border-color: var(--gold); }
.card--cat:hover { border-color: var(--magenta); }

.card--cat { grid-column: 1 / -1; flex-direction: row; }
.card--cat .card__media { flex: 0 0 46%; aspect-ratio: auto; min-height: 260px; }
.card--cat .card__body { justify-content: center; padding: 32px 34px; }
.card--cat .card__body h2 { font-size: clamp(22px, 2.6vw, 30px); }

.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: rgba(0,0,0,.25); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cyan);
  color: #08102e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}
.card__tag--warm { background: var(--gold); }
.card__tag--cat { background: var(--magenta); color: #fff; }

.card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.card__body h2 { font-family: var(--font-display); font-size: clamp(19px, 2.1vw, 24px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; }
.card__body p { color: var(--muted); font-size: 15px; }
.card__go {
  margin-top: auto;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.card__go b { transition: transform .25s; }
.card:hover .card__go b { transform: translateX(5px); }

.foot { margin-top: clamp(44px, 6vw, 72px); text-align: center; color: var(--muted); font-size: 13.5px; display: grid; gap: 8px; }
.foot__sub code {
  background: rgba(255,255,255,.08);
  border: 1px solid var(--stroke);
  border-radius: 7px;
  padding: 2px 7px;
  font-size: 12.5px;
  color: var(--cyan);
}

@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; }
  .head { text-align: left; }
  .card--cat { flex-direction: column; }
  .card--cat .card__media { flex: none; aspect-ratio: 16 / 10; min-height: 0; }
  .card--cat .card__body { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}