/* Cosh-Go AAA landing */
:root {
  --bg: #03060b;
  --ink: #f5f8fc;
  --muted: #8fa3b8;
  --line: rgba(255, 255, 255, 0.08);
  --cyan: #2fd0ff;
  --cyan-2: #7cf0ff;
  --cyan-dim: rgba(47, 208, 255, 0.18);
  --gold: #e8c56a;
  --font-display: "Syne", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 18px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

#aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  position: relative;
  z-index: 2;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(3, 6, 11, 0.88), rgba(3, 6, 11, 0.35) 75%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-nav.is-solid {
  border-bottom-color: var(--line);
  background: rgba(3, 6, 11, 0.82);
}

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

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(47, 208, 255, 0.4);
  box-shadow: 0 0 24px rgba(47, 208, 255, 0.25);
}

.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
  font-size: 15px;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links > a:not(.btn) {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}
.nav-links > a:not(.btn):hover { color: var(--ink); }

.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d7e6f2 !important;
}
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.nav-social:hover { color: #4c8dff !important; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ink);
}
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); }

.btn-download {
  position: relative;
  padding: 13px 24px;
  background: linear-gradient(135deg, #9af5ff 0%, #2fd0ff 42%, #0aa8e0 100%);
  color: #031018 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 0 0 rgba(47, 208, 255, 0.55),
    0 12px 32px rgba(47, 208, 255, 0.38);
  animation: download-pulse 2.1s ease-out infinite;
}
.btn-download::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.btn-download:hover {
  box-shadow:
    0 0 0 8px rgba(47, 208, 255, 0.12),
    0 16px 40px rgba(47, 208, 255, 0.5);
}

@keyframes download-pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 208, 255, 0.55), 0 12px 32px rgba(47, 208, 255, 0.38); }
  70% { box-shadow: 0 0 0 16px rgba(47, 208, 255, 0), 0 12px 32px rgba(47, 208, 255, 0.3); }
  100% { box-shadow: 0 0 0 0 rgba(47, 208, 255, 0), 0 12px 32px rgba(47, 208, 255, 0.38); }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 120px 0 40px;
  display: grid;
  align-content: center;
}

.hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47, 208, 255, 0.35);
  background: rgba(47, 208, 255, 0.1);
  color: #9ae6ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 16vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.hero-title span {
  display: inline-block;
  color: #7cf0ff;
  background: linear-gradient(105deg, #ffffff 8%, #9af5ff 35%, #2fd0ff 62%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 6s linear infinite;
}
@keyframes sheen {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-lead {
  max-width: 36rem;
  margin: 0 0 28px;
  font-size: clamp(16px, 2.1vw, 20px);
  color: #c9d8e8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stage {
  position: relative;
  perspective: 1400px;
  margin-top: 8px;
}

.hero-float {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(47, 208, 255, 0.28);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(47, 208, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  will-change: transform;
}
.hero-float img {
  width: 100%;
  display: block;
  min-height: 280px;
  object-fit: cover;
}
.hero-glow {
  position: absolute;
  inset: auto 10% -40px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(47, 208, 255, 0.45), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin: 28px 0 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--muted);
}
.marquee-track span { white-space: nowrap; }
.marquee-track b { color: var(--cyan-2); font-weight: 800; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(72px, 12vh, 130px) 0;
}
.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 800;
  margin: 0 0 12px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  max-width: 14ch;
}

.section .copy {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  font-size: 17px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(47, 208, 255, 0.1), transparent 40%),
    rgba(8, 12, 20, 0.92);
  padding: 24px;
  min-height: 180px;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease, border-color 0.25s ease;
}
.bento-card.is-in {
  transform: translateY(0);
  opacity: 1;
}
.bento-card:hover {
  border-color: rgba(47, 208, 255, 0.4);
}
.bento-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
}
.bento-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.bento-card .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--cyan-dim);
  color: var(--cyan-2);
  font-size: 18px;
  font-weight: 800;
}
.bento-card.wide { grid-column: span 8; min-height: 260px; }
.bento-card.tall { grid-column: span 4; min-height: 260px; }
.bento-card.mid { grid-column: span 4; }
.bento-card.full { grid-column: span 12; }

.bento-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.bento-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(3, 6, 11, 0.92) 100%);
}
.bento-card .content { position: relative; z-index: 1; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(47, 208, 255, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(47, 208, 255, 0.12);
}
.frame img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.frame:hover img { transform: scale(1.04); }

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.platform {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.9);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.platform:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 208, 255, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(47, 208, 255, 0.1);
}
.platform h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 8px;
}
.platform p { margin: 0; color: var(--muted); font-size: 14px; }
.platform .btn { margin-top: 18px; align-self: flex-start; }

.faq {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 12, 20, 0.88);
  padding: 16px 18px;
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--cyan-2); margin-bottom: 8px; }
.faq p { margin: 0; color: var(--muted); font-size: 14px; }

.cta-final {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(47, 208, 255, 0.3);
  padding: clamp(28px, 6vw, 56px);
  background:
    radial-gradient(700px 260px at 80% 20%, rgba(47, 208, 255, 0.22), transparent 60%),
    radial-gradient(500px 220px at 10% 80%, rgba(232, 197, 106, 0.12), transparent 55%),
    rgba(8, 12, 20, 0.95);
}
.btn-gold {
  background: linear-gradient(135deg, #ffe29a 0%, #e8c56a 42%, #c9a227 100%);
  color: #1a1406 !important;
  box-shadow:
    0 0 0 0 rgba(232, 197, 106, 0.5),
    0 12px 32px rgba(232, 197, 106, 0.28);
  animation: gold-pulse 2.4s ease-out infinite;
}
.btn-gold:hover {
  background: linear-gradient(135deg, #fff0bf 0%, #f0d078 45%, #d4ad3a 100%);
  color: #1a1406 !important;
  box-shadow:
    0 0 0 8px rgba(232, 197, 106, 0.12),
    0 16px 40px rgba(232, 197, 106, 0.4);
}
@keyframes gold-pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 197, 106, 0.5), 0 12px 32px rgba(232, 197, 106, 0.28); }
  70% { box-shadow: 0 0 0 16px rgba(232, 197, 106, 0), 0 12px 32px rgba(232, 197, 106, 0.22); }
  100% { box-shadow: 0 0 0 0 rgba(232, 197, 106, 0), 0 12px 32px rgba(232, 197, 106, 0.28); }
}

/* ===== Shop wow ===== */
.shop-page .wrap { position: relative; z-index: 2; }

.shop-hero {
  position: relative;
  padding: 130px 0 48px;
  overflow: hidden;
}
.shop-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.shop-hero h1 span {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(232, 197, 106, 0.35);
}
.shop-hero .lead {
  margin: 0 0 22px;
  color: #c9d8e8;
  font-size: clamp(16px, 2vw, 19px);
  max-width: 38rem;
}
.shop-hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(232, 197, 106, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(232, 197, 106, 0.18);
  transform: perspective(1000px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.35s ease;
}
.shop-hero-card:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) scale(1.02);
}
.shop-hero-card img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.shop-hero-card .shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shop-shine 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shop-shine {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}
.shop-price-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(8, 10, 14, 0.82);
  border: 1px solid rgba(232, 197, 106, 0.45);
  backdrop-filter: blur(10px);
}
.shop-price-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.shop-price-tag span {
  font-size: 12px;
  color: var(--muted);
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
  position: sticky;
  top: 78px;
  z-index: 20;
  padding: 10px;
  border-radius: 16px;
  background: rgba(3, 6, 11, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.shop-tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.shop-tabs a:hover {
  color: var(--ink);
  border-color: rgba(47, 208, 255, 0.3);
  background: rgba(47, 208, 255, 0.08);
}

.shop-products {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 18px;
}
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(232, 197, 106, 0.12), transparent 42%),
    rgba(8, 12, 20, 0.94);
  padding: 26px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 106, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 50px rgba(232, 197, 106, 0.12);
}
.product-card.vip {
  border-color: rgba(232, 197, 106, 0.4);
  background:
    radial-gradient(500px 220px at 90% 0%, rgba(232, 197, 106, 0.22), transparent 55%),
    linear-gradient(160deg, rgba(47, 208, 255, 0.08), transparent 40%),
    rgba(8, 12, 20, 0.96);
}
.product-card .badge-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1406;
  background: linear-gradient(135deg, #ffe29a, #e8c56a);
  width: fit-content;
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.product-card .price-xl {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 52px);
  color: var(--gold);
  margin: 18px 0 6px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(232, 197, 106, 0.25);
}
.product-card .price-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.product-card.donate {
  background:
    radial-gradient(400px 180px at 10% 0%, rgba(47, 208, 255, 0.16), transparent 55%),
    rgba(8, 12, 20, 0.94);
}
.product-card.donate .price-xl { color: var(--cyan-2); text-shadow: 0 0 30px rgba(47, 208, 255, 0.25); }
.product-card.donate .badge-top {
  background: linear-gradient(135deg, #9af5ff, #2fd0ff);
}

.shop-panel {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 20, 0.9);
  padding: clamp(20px, 3vw, 28px);
}
.shop-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 12px;
  max-width: none;
  letter-spacing: -0.02em;
}
.shop-panel h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 18px 0 8px;
}
.shop-panel ol,
.shop-panel ul {
  padding-left: 20px;
  color: #d5e0eb;
  margin: 0;
}
.shop-panel li { margin: 6px 0; }
.shop-panel p { color: #d5e0eb; }
.shop-panel a { color: var(--cyan-2); }
.shop-panel a:hover { text-decoration: underline; }
.shop-panel a.btn,
.product-card a.btn,
.shop-hero a.btn,
.cta-final a.btn,
.platforms a.btn {
  text-decoration: none;
}
.shop-panel a.btn-download,
.product-card a.btn-download,
.shop-hero a.btn-download,
.cta-final a.btn-download,
.platforms a.btn-download {
  color: #031018;
}
.shop-panel a.btn-gold,
.product-card a.btn-gold,
.shop-hero a.btn-gold,
.cta-final a.btn-gold {
  color: #1a1406;
}
.shop-panel a.btn-ghost,
.product-card a.btn-ghost,
.shop-hero a.btn-ghost,
.cta-final a.btn-ghost,
.platforms a.btn-ghost {
  color: #f5f8fc;
}
.shop-panel a.btn:hover,
.product-card a.btn:hover,
.shop-hero a.btn:hover,
.cta-final a.btn:hover,
.platforms a.btn:hover {
  text-decoration: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.step {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
}
.step .n {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 8px;
}
.step p { margin: 0; color: var(--muted); font-size: 14px; }

.legal-block {
  margin-top: 12px;
  padding: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  max-height: 280px;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 13px;
  color: #c5d3e0;
  font-family: var(--font-body);
}

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(232, 197, 106, 0.35);
  background: rgba(232, 197, 106, 0.14);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.warn { color: #ffb347; }

@media (max-width: 900px) {
  .shop-hero-grid,
  .shop-products,
  .steps { grid-template-columns: 1fr; }
  .shop-hero-card { transform: none; }
  .shop-tabs { top: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold,
  .shop-hero-card .shine { animation: none; }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: #c5d3e0; }
.site-footer a:hover { color: var(--cyan); }

@media (max-width: 900px) {
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.mid,
  .bento-card.full { grid-column: span 12; }
  .split,
  .split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .platforms { grid-template-columns: 1fr; }
  .nav-links .hide-sm { display: none; }
  .hero-title { font-size: clamp(56px, 18vw, 96px); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-download,
  .marquee-track,
  .hero-title span,
  .pill-dot { animation: none; }
  .bento-card { opacity: 1; transform: none; }
}
