:root {
  color-scheme: light;
  --bg: #151412;
  --text: #f8f2e9;
  --muted: #bdb3a7;
  --panel: rgba(255, 255, 255, .08);
  --line: rgba(248, 242, 233, .13);
  --ink: #f8f2e9;
  --pink: #ff4d5a;
  --orange: #ff9f1c;
  --green: #7bd13b;
  --blue: #4c7dff;
  --shadow: 0 28px 80px rgba(0, 0, 0, .32);
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #11100f;
  --text: #f8f2e9;
  --muted: #b7ada2;
  --panel: rgba(255, 255, 255, .075);
  --line: rgba(248, 242, 233, .14);
  --ink: #f8f2e9;
  --pink: #ff6ba7;
  --orange: #ffb84d;
  --green: #58d8cc;
  --blue: #73a5ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 159, 28, .18), transparent 26%),
    radial-gradient(circle at 82% 6%, rgba(76, 125, 255, .16), transparent 28%),
    linear-gradient(180deg, #151412, #22201d 46%, #121110);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

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

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(18, 17, 16, .78);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: white;
  box-shadow: 0 10px 24px rgba(234, 76, 137, .25);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: clamp(10px, 2vw, 26px);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 7px 10px;
  border-radius: 999px;
  transition: .2s ease;
}

.nav a:hover { background: color-mix(in srgb, var(--pink) 12%, transparent); color: var(--text); }

.theme-toggle {
  min-width: 72px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
  font-size: 11px;
}

[data-theme="dark"] .sun, :root:not([data-theme="dark"]) .moon { display: none; }

.hero, .section {
  position: relative;
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 78px);
}

.hero {
  min-height: calc(100vh - 75px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(10, 10, 12, .88), rgba(10, 10, 12, .62) 43%, rgba(10, 10, 12, .82)),
    linear-gradient(180deg, rgba(10, 10, 12, .58), rgba(10, 10, 12, .28) 48%, rgba(10, 10, 12, .92));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: heroFade 18s ease-in-out infinite;
}

.hero-slide.one {
  background-image: url("/assets/hero-major-1.jpg?v=20260806-responsive");
}

.hero-slide.two {
  background-image: url("/assets/hero-major-2.jpg?v=20260806-responsive");
  animation-delay: 6s;
}

.hero-slide.three {
  background-image: url("/assets/hero-major-3.jpg?v=20260806-responsive");
  animation-delay: 12s;
}

@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.04); }
  8%, 31% { opacity: 1; transform: scale(1); }
  42% { opacity: 0; transform: scale(1.03); }
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 760px;
  padding: 24px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .1em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 118px);
  line-height: .88;
  letter-spacing: 0;
}

h2 { margin-bottom: 16px; font-size: clamp(34px, 4.6vw, 68px); line-height: .94; letter-spacing: 0; }
h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: 0; }
.lead { max-width: 650px; color: rgba(248, 242, 233, .82); font-size: clamp(18px, 2vw, 23px); line-height: 1.7; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.button.primary { background: linear-gradient(135deg, var(--orange), var(--pink)); color: #171412; border-color: transparent; }
.button.ghost { background: var(--panel); }

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
}

.signal-row span {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 12, 14, .58);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .05);
}

.signal-row b { display: block; font-size: 18px; }
.signal-row small { display: block; margin-top: 8px; color: var(--muted); }

.hero-stage { perspective: 1000px; }
.map-card {
  position: relative;
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(234, 76, 137, .16), transparent 30%),
    linear-gradient(315deg, rgba(255, 159, 28, .22), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
  transform: rotateX(4deg) rotateY(-7deg);
  transition: transform .4s ease;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(1.15) contrast(1.08);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 48% 35%, rgba(255, 255, 255, .28), transparent 24%),
    linear-gradient(180deg, rgba(17, 16, 15, .36), rgba(17, 16, 15, .78));
}

[data-theme="dark"] .map-card::before {
  background:
    radial-gradient(circle at 48% 35%, rgba(255, 255, 255, .28), transparent 24%),
    linear-gradient(180deg, rgba(17, 16, 15, .4), rgba(17, 16, 15, .78));
}

.map-card:hover { transform: rotateX(0deg) rotateY(0deg) translateY(-4px); }
.map-top, .loadout {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.avatar-frame {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 3;
  width: min(270px, 66%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 28px 70px rgba(23, 20, 18, .22);
}

.avatar-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radar {
  position: absolute;
  inset: 76px 34px 96px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.3) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255,255,255,.3) 50%, transparent 51%),
    color-mix(in srgb, var(--ink) 7%, transparent);
}

.site {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 950;
}

.site.a { left: 14%; top: 16%; }
.site.b { right: 13%; bottom: 16%; }
.path {
  position: absolute;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--orange) 68%, transparent);
  transform-origin: left center;
}

.p1 { left: 25%; top: 35%; width: 48%; transform: rotate(18deg); }
.p2 { left: 36%; top: 56%; width: 36%; transform: rotate(-24deg); background: color-mix(in srgb, var(--green) 70%, transparent); }
.p3 { left: 18%; bottom: 22%; width: 54%; transform: rotate(8deg); background: color-mix(in srgb, var(--pink) 64%, transparent); }
.blip {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 159, 28, .18);
  animation: pulse 1.8s ease-in-out infinite;
}

.blip.one { left: 34%; top: 38%; }
.blip.two { right: 27%; top: 51%; animation-delay: -.4s; background: var(--pink); }
.blip.three { left: 58%; bottom: 20%; animation-delay: -.8s; background: var(--green); }

.crosshair {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%);
  opacity: .55;
}

.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--orange);
}

.crosshair::before { left: 40px; top: 0; width: 6px; height: 86px; }
.crosshair::after { left: 0; top: 40px; width: 86px; height: 6px; }
.loadout { position: absolute; left: 18px; right: 18px; bottom: 18px; }
.loadout span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--bg) 62%, transparent); }

@keyframes pulse {
  50% { transform: scale(1.28); box-shadow: 0 0 0 14px rgba(255, 159, 28, .05); }
}

.section { border-top: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 32px; }
.section-head p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }

.about-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 820px;
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.about-card img {
  width: 128px;
  height: 128px;
  border-radius: 22px;
  object-fit: cover;
}

.about-card p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }

.pill-board {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 880px;
}

.pill-board span {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  font-weight: 900;
}

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

.shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.shot-card:hover { transform: translateY(-6px); box-shadow: 0 34px 80px rgba(30, 25, 20, .17); }
.shot {
  display: grid;
  place-items: end start;
  min-height: 260px;
  padding: 18px;
  background-size: cover;
}

.shot span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #171412;
  font-size: 12px;
  font-weight: 950;
}

.preview-one { background: linear-gradient(135deg, #ffe4ef, #ffbd59 58%, #2ec4b6); }
.preview-two { background: linear-gradient(135deg, #1f1b18, #ea4c89 54%, #3178ff); }
.preview-three { background: linear-gradient(135deg, #f5f1e8, #94d2bd 48%, #ff9f1c); }
.shot-meta { padding: 20px; }
.shot-meta p { color: var(--muted); line-height: 1.65; }

.skins {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 20, 18, .92), rgba(38, 35, 32, .9)),
    var(--ink);
  color: #f8f2e9;
}

.skins .section-head p:not(.eyebrow) { color: rgba(248, 242, 233, .72); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.showcase-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.showcase-card.feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 800px;
}

.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .35s ease, filter .35s ease;
}

.showcase-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.16) contrast(1.08);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 7, .86));
}

.showcase-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.showcase-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-left: 4px solid var(--pink);
  border-radius: 8px;
  background: rgba(0, 0, 0, .5);
  color: #ffb84d;
  font-size: 12px;
  font-weight: 950;
}

.showcase-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1.05;
}

.showcase-card small {
  display: block;
  margin-top: 8px;
  color: rgba(248, 242, 233, .76);
  font-size: 14px;
  font-weight: 850;
}

.sticker-card,
.badge-card {
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}

.skin-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: #ffb84d;
  font-size: 12px;
  font-weight: 950;
}

.collectible-stack {
  display: grid;
  gap: 18px;
}

.collectible-stack.standalone {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.sticker-card,
.badge-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  padding: 18px;
}

.sticker-card img,
.badge-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(1.08) contrast(1.04);
}

.badge-card img {
  object-fit: contain;
  background: #333;
  padding: 18px;
}

.sticker-card h3,
.badge-card h3 {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.sticker-card p,
.badge-card p {
  color: rgba(248, 242, 233, .72);
  line-height: 1.7;
}

.sticker-card { background: linear-gradient(135deg, rgba(255, 184, 77, .18), rgba(255, 255, 255, .06)); }
.badge-card { background: linear-gradient(135deg, rgba(255, 74, 74, .16), rgba(255, 255, 255, .06)); }

.blog { background: color-mix(in srgb, var(--panel) 54%, transparent); }
.post-list { border-top: 1px solid var(--line); }
.post {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.post time { color: var(--pink); font-weight: 950; }
.post span { font-size: 20px; font-weight: 850; }
.post em { color: var(--muted); font-style: normal; font-weight: 900; }

.work-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-wall figure {
  margin: 0;
  min-height: 280px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--orange) 24%, transparent), transparent 38%),
    color-mix(in srgb, var(--panel) 92%, transparent);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .07);
}

.work-wall span { color: color-mix(in srgb, var(--text) 32%, transparent); font-size: 58px; font-weight: 950; }
.work-wall figcaption { font-weight: 950; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 28px;
  align-items: center;
}

.contact-panel { display: grid; gap: 12px; }
.contact-panel a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  font-weight: 900;
  transition: transform .2s ease, background .2s ease;
}

.contact-panel a:hover { transform: translateX(4px); background: color-mix(in srgb, var(--orange) 12%, var(--panel)); }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 78px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-card.feature {
    grid-column: span 2;
    grid-row: auto;
    min-height: 680px;
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px 10px;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 6px;
    padding: 7px;
    border-radius: 14px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }

  .nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
  }

  .hero, .contact { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: 48px;
    gap: 28px;
  }

  .hero-background::after {
    background:
      linear-gradient(90deg, rgba(10, 10, 12, .9), rgba(10, 10, 12, .68)),
      linear-gradient(180deg, rgba(10, 10, 12, .72), rgba(10, 10, 12, .5) 48%, rgba(10, 10, 12, .94));
  }

  .hero-copy {
    padding: 0;
  }

  .map-card {
    min-height: 360px;
    max-width: 560px;
    margin: 0 auto;
    transform: none;
  }

  .avatar-frame {
    width: min(220px, 58vw);
    border-width: 8px;
  }

  .project-grid, .work-wall, .sticker-card, .badge-card, .collectible-stack.standalone { grid-template-columns: 1fr; }
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .showcase-card.feature {
    grid-column: auto;
    grid-row: auto;
    min-height: min(560px, 118vw);
  }

  .sticker-card img, .badge-card img { min-height: 240px; }
  .signal-row { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; gap: 8px; }
  .about-card { grid-template-columns: 1fr; }
  .about-card img { width: min(100%, 220px); height: auto; aspect-ratio: 1; }
  h1 { font-size: clamp(46px, 16vw, 78px); }
}

@media (max-width: 560px) {
  .hero, .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 48px;
    gap: 22px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .lead {
    font-size: 17px;
    line-height: 1.62;
  }

  .brand span:last-child {
    font-size: 14px;
  }

  .theme-toggle {
    min-width: 62px;
    height: 34px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-actions {
    margin: 24px 0;
  }

  .signal-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .signal-row span {
    min-height: 62px;
    padding: 10px;
    border-radius: 14px;
  }

  .signal-row b {
    font-size: 14px;
  }

  .signal-row small {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.25;
  }

  .map-card {
    min-height: 286px;
    border-radius: 20px;
  }

  .avatar-frame {
    width: min(180px, 52vw);
  }

  .radar {
    inset: 62px 18px 78px;
  }

  .site {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .loadout {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .loadout span {
    padding: 8px 9px;
    font-size: 11px;
  }

  .showcase-card,
  .showcase-card.feature {
    min-height: min(440px, 112vw);
    border-radius: 18px;
  }

  .showcase-card div {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .showcase-card strong {
    font-size: 22px;
  }

  .sticker-card,
  .badge-card {
    padding: 12px;
    border-radius: 20px;
  }

  .sticker-card img,
  .badge-card img {
    min-height: 210px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .cursor-dot { display: none; }
  .hero-slide.one { opacity: 1; transform: none; }
}
