:root {
  --bg: #06080a;
  --panel: #10151b;
  --panel-soft: rgba(18, 25, 31, .76);
  --line: rgba(255, 255, 255, .09);
  --text: #f4fbf6;
  --muted: #91a19b;
  --green: #78f2a8;
  --green-2: #b8ffd1;
  --blue: #66d9ff;
  --gold: #ffd36b;
  --danger: #ff7185;
  --shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(120, 242, 168, .14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(102, 217, 255, .1), transparent 29%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.02em;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 8, 10, .72);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-cube,
.brand-logo {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #06130d;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  font-weight: 950;
  box-shadow: 0 0 32px rgba(120, 242, 168, .32);
  transition: transform .28s ease;
}

.brand-logo {
  object-fit: cover;
  background: #07100c;
  border: 1px solid rgba(120,242,168,.18);
}

.brand:hover .brand-cube,
.brand:hover .brand-logo { transform: rotate(-7deg) translateY(-2px); }
.brand b, .brand small { display: block; }
.brand b { letter-spacing: .2em; }
.brand small { color: var(--green); font-size: 10px; letter-spacing: .28em; }

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover { color: var(--green); }

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.nav-cta,
.primary-button {
  min-height: 46px;
  padding: 0 20px;
  color: #07180f;
  background: var(--green);
  box-shadow: 0 14px 34px rgba(120, 242, 168, .18);
}

.secondary-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.035);
}

.primary-button:hover,
.secondary-button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(120,242,168,.3);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 56px;
  align-items: center;
  min-height: 720px;
  padding: 72px clamp(22px, 5vw, 72px) 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .9;
  letter-spacing: -.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .95;
  letter-spacing: -.065em;
}

h3 { margin-bottom: 10px; font-size: 22px; }
.hero-text,
.section-copy {
  max-width: 650px;
  color: #b6c7c0;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.hero-stats b, .hero-stats small { display: block; }
.hero-stats b { color: var(--green-2); font-size: 24px; }
.hero-stats small { color: var(--muted); font-size: 12px; }

.hero-stage {
  position: relative;
  min-height: 530px;
  border: 1px solid rgba(120,242,168,.18);
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(to bottom, #112536, #101719 52%, #07100b),
    radial-gradient(circle at 50% 0, rgba(102,217,255,.28), transparent 55%);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-stage:hover {
  transform: perspective(1000px) rotateX(3deg) rotateY(-5deg) translateY(-6px);
  box-shadow: 0 36px 100px rgba(0,0,0,.48), 0 0 44px rgba(120,242,168,.12);
}

.sun {
  position: absolute;
  top: 54px;
  right: 62px;
  width: 62px;
  height: 62px;
  background: var(--gold);
  box-shadow: 0 0 40px rgba(255,211,107,.42);
  image-rendering: pixelated;
}

.cloud {
  position: absolute;
  height: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 24px 0 rgba(255,255,255,.82), 48px 0 rgba(255,255,255,.82), 24px -20px rgba(255,255,255,.82);
  animation: drift 9s linear infinite;
}
.cloud-one { top: 100px; left: 54px; width: 48px; }
.cloud-two { top: 168px; left: 290px; width: 56px; animation-duration: 13s; opacity: .7; }
@keyframes drift { 50% { transform: translateX(28px); } }

.floating-island {
  position: absolute;
  left: 78px;
  right: 78px;
  bottom: 88px;
  height: 134px;
  transform: rotate(-2deg);
  transition: transform .35s ease;
}
.hero-stage:hover .floating-island { transform: rotate(1deg) translateY(-10px); }
.grass { height: 34px; background: linear-gradient(90deg, #42b95b, #78f2a8); border-radius: 12px 12px 0 0; }
.dirt-grid {
  height: 100px;
  background-color: #75401f;
  background-image:
    linear-gradient(45deg, rgba(0,0,0,.12) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.08) 25%, transparent 25%);
  background-size: 34px 34px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 16% 100%);
}
.ore { position: absolute; width: 18px; height: 18px; background: var(--blue); box-shadow: 24px 18px var(--blue); }
.ore-one { left: 130px; top: 72px; }
.ore-two { right: 120px; top: 94px; background: var(--green); box-shadow: -26px 12px var(--green); }

.player {
  position: absolute;
  left: 218px;
  bottom: 214px;
  width: 86px;
  height: 150px;
  animation: idle 1.8s ease-in-out infinite;
}
@keyframes idle { 50% { transform: translateY(-7px); } }
.head, .body, .arm, .leg, .sword { position: absolute; image-rendering: pixelated; }
.head { left: 21px; top: 0; width: 44px; height: 44px; background: #d19a66; box-shadow: inset 0 -10px #8f563b, inset 0 10px #2e6040; }
.body { left: 18px; top: 45px; width: 50px; height: 58px; background: #2f8de4; }
.arm { top: 48px; width: 18px; height: 60px; background: #d19a66; transform-origin: top center; }
.arm-left { left: 0; }
.arm-right { right: 0; transform: rotate(-20deg); }
.leg { top: 102px; width: 21px; height: 48px; background: #25325f; }
.leg-left { left: 19px; }
.leg-right { right: 18px; }
.sword {
  right: 122px;
  bottom: 286px;
  width: 18px;
  height: 98px;
  background: linear-gradient(#dfffff, #76e8ff);
  transform: rotate(42deg);
  box-shadow: 0 0 20px rgba(102,217,255,.38);
  transition: transform .3s ease;
}
.hero-stage:hover .sword { transform: rotate(25deg) translate(16px, -12px); }
.spark { position: absolute; width: 10px; height: 10px; background: var(--green); box-shadow: 0 0 18px var(--green); animation: twinkle 1.4s ease-in-out infinite; }
.spark-one { top: 148px; left: 160px; }
.spark-two { top: 228px; right: 112px; animation-delay: .4s; }
.spark-three { bottom: 174px; left: 118px; animation-delay: .8s; }
@keyframes twinkle { 50% { opacity: .35; transform: scale(.65) rotate(45deg); } }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0 clamp(22px, 5vw, 72px) 42px;
}
.logo-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.section {
  padding: 76px clamp(22px, 5vw, 72px);
}
.section-heading { max-width: 800px; margin-bottom: 28px; }
.section-heading.row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

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

.cosmetic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-card,
.cosmetic-card,
.launcher-card,
.safety-card,
details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-soft);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}

.block-hover {
  position: relative;
  transform-style: preserve-3d;
  transition: transform .26s ease, border-color .26s ease, background .26s ease;
}
.block-hover:before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(120,242,168,.16), transparent 42%, rgba(102,217,255,.1));
  content: "";
  transition: opacity .26s ease;
  pointer-events: none;
}
.block-hover:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(120,242,168,.32);
}
.block-hover:hover:before { opacity: 1; }

.feature-card {
  min-height: 255px;
  padding: 28px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 14px;
  color: var(--green);
  background: rgba(120,242,168,.08);
  font-size: 24px;
}
.feature-card p,
.cosmetic-card p,
details p,
.safety-card p,
.check-list {
  color: var(--muted);
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.check-list li:before {
  margin-right: 10px;
  color: var(--green);
  content: "▣";
}

.launcher-card {
  padding: 18px;
  min-height: 420px;
}
.window-bar {
  display: flex;
  gap: 8px;
  padding-bottom: 14px;
}
.window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--danger);
}
.window-bar span:nth-child(2) { background: var(--gold); }
.window-bar span:nth-child(3) { background: var(--green); }
.launcher-layout {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  min-height: 360px;
}
.launcher-layout aside {
  border-radius: 18px;
  background: linear-gradient(#0c1015, #151b22);
}
.fake-hero {
  height: 150px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(120,242,168,.3), rgba(102,217,255,.14)), #121921;
}
.fake-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.fake-row span,
.fake-list i {
  display: block;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
}
.fake-row span { height: 82px; }
.fake-list { display: grid; gap: 10px; margin-top: 14px; }
.fake-list i { height: 28px; }

.cosmetics { background: linear-gradient(180deg, transparent, rgba(120,242,168,.035), transparent); }
.cosmetic-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.cosmetic-preview {
  position: relative;
  display: grid;
  place-items: center;
  height: 310px;
  background: radial-gradient(circle at 50% 30%, rgba(120,242,168,.18), transparent 45%), #0d1218;
  overflow: hidden;
}
.cosmetic-item {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(120,242,168,.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(120,242,168,.12), rgba(102,217,255,.06)),
    rgba(255,255,255,.035);
  color: var(--green-2);
  font-size: 70px;
  font-weight: 900;
  letter-spacing: -.06em;
  filter: drop-shadow(0 20px 22px rgba(0,0,0,.35));
  transition: transform .3s cubic-bezier(.2, 1.4, .3, 1);
}
.cosmetic-fallback {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(120,242,168,.2);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(120,242,168,.14), rgba(102,217,255,.06)),
    rgba(255,255,255,.035);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.035),
    0 26px 32px rgba(0,0,0,.34);
  overflow: hidden;
  transition: transform .32s ease, filter .32s ease;
}
.cosmetic-fallback:before,
.cosmetic-fallback:after {
  position: absolute;
  content: "";
}
.cosmetic-fallback span {
  position: relative;
  z-index: 3;
  color: rgba(234,255,243,.94);
  font-size: 50px;
  font-weight: 950;
  letter-spacing: -.06em;
  text-shadow: 0 0 24px rgba(120,242,168,.24);
}
.cosmetic-fallback i {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(120,242,168,.5);
  image-rendering: pixelated;
  animation: float-pixel 2.4s ease-in-out infinite;
}
.cosmetic-fallback i:nth-child(2) { top: 36px; left: 42px; }
.cosmetic-fallback i:nth-child(3) { right: 38px; top: 58px; animation-delay: .25s; }
.cosmetic-fallback i:nth-child(4) { left: 58px; bottom: 40px; animation-delay: .5s; }
.cosmetic-fallback i:nth-child(5) { right: 52px; bottom: 52px; animation-delay: .75s; }
.cosmetic-card:hover .cosmetic-fallback {
  transform: translateY(-16px) scale(1.08);
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.48)) drop-shadow(0 0 18px rgba(120,242,168,.14));
}
.cosmetic-fallback.wings {
  border-color: rgba(120,242,168,.32);
}
.cosmetic-fallback.wings:before,
.cosmetic-fallback.wings:after {
  top: 54px;
  width: 66px;
  height: 86px;
  background:
    linear-gradient(135deg, transparent 19%, rgba(120,242,168,.92) 20% 36%, transparent 37%),
    linear-gradient(45deg, transparent 35%, rgba(184,255,209,.78) 36% 48%, transparent 49%),
    linear-gradient(135deg, rgba(31,168,95,.9), rgba(120,242,168,.3));
  clip-path: polygon(0 24%, 84% 0, 100% 18%, 64% 36%, 100% 52%, 56% 66%, 80% 100%, 0 76%);
  box-shadow: 0 0 22px rgba(120,242,168,.26);
}
.cosmetic-fallback.wings:before {
  left: 22px;
  transform: rotate(-10deg);
}
.cosmetic-fallback.wings:after {
  right: 22px;
  transform: scaleX(-1) rotate(-10deg);
}
.cosmetic-fallback.pet:before {
  width: 92px;
  height: 92px;
  background:
    linear-gradient(90deg, transparent 36%, #07150d 37% 45%, transparent 46% 55%, #07150d 56% 64%, transparent 65%),
    linear-gradient(#82f5a7, #35ba65);
  box-shadow:
    -18px 56px 0 -12px #2b8f4d,
    18px 56px 0 -12px #2b8f4d,
    0 0 28px rgba(120,242,168,.25);
  image-rendering: pixelated;
}
.cosmetic-fallback.pet span { opacity: 0; }
.cosmetic-fallback.trail {
  background:
    radial-gradient(circle at 32% 66%, rgba(102,217,255,.18), transparent 20%),
    linear-gradient(135deg, rgba(120,242,168,.12), rgba(102,217,255,.08)),
    rgba(255,255,255,.035);
}
.cosmetic-fallback.trail span { opacity: 0; }
.cosmetic-fallback.trail i {
  width: 26px;
  height: 26px;
  border-radius: 4px;
}
.cosmetic-fallback.trail i:nth-child(2) { top: 44px; left: 118px; }
.cosmetic-fallback.trail i:nth-child(3) { top: 76px; left: 82px; background: var(--blue); }
.cosmetic-fallback.trail i:nth-child(4) { left: 48px; bottom: 58px; width: 18px; height: 18px; }
.cosmetic-fallback.trail i:nth-child(5) { right: 42px; bottom: 42px; width: 14px; height: 14px; background: var(--green-2); }
.cosmetic-fallback.emote {
  border-color: rgba(255,211,107,.25);
}
.cosmetic-fallback.emote:before {
  width: 112px;
  height: 112px;
  background:
    conic-gradient(from 45deg, transparent 0 8%, var(--gold) 8% 13%, transparent 13% 25%, rgba(120,242,168,.92) 25% 30%, transparent 30% 50%, var(--gold) 50% 55%, transparent 55% 76%, rgba(102,217,255,.9) 76% 82%, transparent 82%);
  filter: drop-shadow(0 0 18px rgba(255,211,107,.22));
  animation: spin-burst 5s linear infinite;
}
.cosmetic-fallback.emote span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(6,8,10,.72);
  font-size: 22px;
}
.cosmetic-fallback.theme:before {
  width: 128px;
  height: 92px;
  border: 1px solid rgba(120,242,168,.28);
  border-radius: 14px;
  background:
    linear-gradient(90deg, #111922 0 24%, transparent 24%),
    linear-gradient(180deg, rgba(120,242,168,.5) 0 22%, transparent 22%),
    linear-gradient(135deg, #10151b, #0c1217);
  box-shadow:
    inset 42px 34px 0 -28px rgba(255,255,255,.06),
    inset 82px 34px 0 -28px rgba(255,255,255,.045),
    0 0 26px rgba(120,242,168,.12);
}
.cosmetic-fallback.theme span {
  transform: translateY(12px);
  font-size: 36px;
}
@keyframes float-pixel {
  50% { transform: translateY(-12px) rotate(45deg); opacity: .62; }
}
@keyframes spin-burst {
  to { transform: rotate(360deg); }
}
.cosmetic-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,.4));
  transform: translateY(8px) scale(1);
  transition: transform .32s ease, filter .32s ease;
}
.cosmetic-card:hover .cosmetic-item {
  transform: translateY(-16px) scale(1.12) rotate(-4deg);
}
.cosmetic-card:hover .cosmetic-image {
  transform: translateY(-8px) scale(1.08);
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.48)) drop-shadow(0 0 18px rgba(120,242,168,.12));
}
.cosmetic-preview:after {
  position: absolute;
  bottom: 42px;
  width: 92px;
  height: 16px;
  border-radius: 50%;
  background: rgba(0,0,0,.32);
  filter: blur(4px);
  content: "";
}
.rarity {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0,0,0,.32);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rarity.epic { color: #bc9cff; border-color: rgba(188,156,255,.32); }
.rarity.mythic { color: #ff83d5; border-color: rgba(255,131,213,.32); }
.rarity.legendary { color: var(--gold); border-color: rgba(255,211,107,.35); }
.cosmetic-body { padding: 22px; }
.cosmetic-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-type {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.sku {
  margin-top: 14px;
  color: rgba(145,161,155,.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.cosmetic-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}
.price { color: var(--green-2); font-size: 22px; font-weight: 900; }
.buy-button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  color: #08180f;
  background: var(--green);
  font-weight: 900;
}
.buy-button:hover { background: var(--green-2); }

.cape-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(102,217,255,.08), transparent 30%),
    radial-gradient(circle at 85% 28%, rgba(120,242,168,.08), transparent 32%);
}

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

.cape-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-soft);
  box-shadow: 0 18px 50px rgba(0,0,0,.2);
}

.cape-scene {
  position: relative;
  display: grid;
  place-items: center;
  height: 320px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(102,217,255,.12), transparent 45%),
    linear-gradient(135deg, #111923, #0b1015);
  perspective: 760px;
}

.cape-scene:before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  opacity: .55;
}

.emerald-bg { background: radial-gradient(circle at 50% 30%, rgba(120,242,168,.22), transparent 42%), #0b1511; }
.founder-bg { background: radial-gradient(circle at 50% 30%, rgba(255,211,107,.2), transparent 42%), #12100b; }
.frost-bg { background: radial-gradient(circle at 50% 30%, rgba(102,217,255,.22), transparent 42%), #09131a; }

.cape-render {
  position: relative;
  z-index: 2;
  width: min(88%, 310px);
  height: min(88%, 310px);
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,.38));
  transform: translateY(8px) scale(1);
  transition: transform .32s ease, filter .32s ease;
}

.cape-card:hover .cape-render {
  transform: translateY(-8px) scale(1.08) rotate(-1deg);
  filter: drop-shadow(0 34px 28px rgba(0,0,0,.46)) drop-shadow(0 0 22px rgba(120,242,168,.14));
}

.cape-scene:after {
  position: absolute;
  bottom: 34px;
  width: 150px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,.36);
  filter: blur(7px);
  content: "";
}

.cape-copy {
  padding: 22px;
}

.cape-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.safety-card {
  padding: 38px;
  background: linear-gradient(135deg, rgba(120,242,168,.12), rgba(102,217,255,.06)), var(--panel);
}

details {
  padding: 22px;
}
summary {
  color: var(--text);
  font-weight: 850;
  cursor: pointer;
}
details p { margin: 14px 0 0; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(14px);
}
.hidden { display: none; }
.modal {
  position: relative;
  width: min(560px, 100%);
  padding: 30px;
  border: 1px solid rgba(120,242,168,.22);
  border-radius: 24px;
  background: #10151b;
  box-shadow: var(--shadow);
}
.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 22px;
  font-weight: 950;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero-stage { min-height: 470px; }
  .feature-grid, .cosmetic-grid, .cape-grid, .faq-grid { grid-template-columns: 1fr; }
  .section-heading.row, .site-footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1220px) and (min-width: 981px) {
  .cosmetic-grid,
  .cape-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
