:root {
  --bg: #050615;
  --bg-2: #090b23;
  --panel: rgba(15, 18, 49, .78);
  --panel-solid: #101433;
  --panel-deep: #090c23;
  --ink: #fbfbff;
  --muted: #b7bbd2;
  --line: rgba(255, 255, 255, .13);
  --electric: #f8ff46;
  --cyan: #38e8ff;
  --blue: #4b7dff;
  --violet: #9f55ff;
  --magenta: #ff4edb;
  --fire: #ff6a3d;
  --gold: #ffd763;
  --mint: #5dffc5;
  --danger: #ff5576;
  --shadow: 0 30px 90px rgba(0, 0, 0, .42);
  --radius: 26px;
  --max-width: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -10%, rgba(75, 125, 255, .23), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(255, 78, 219, .17), transparent 31rem),
    linear-gradient(180deg, #050615 0%, #080a1f 48%, #050615 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
body::selection { background: var(--electric); color: #080915; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  color: #070815;
  background: var(--electric);
  font-weight: 900;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(var(--max-width), calc(100% - 36px)); margin-inline: auto; }
.section { position: relative; padding: 96px 0; }
.section-tight { position: relative; padding: 58px 0; }
.section-glow::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: 70vw;
  height: 42vw;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(56, 232, 255, .08), transparent 66%);
  pointer-events: none;
}

.ambient-layer { position: fixed; inset: 0; z-index: -2; pointer-events: none; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(18px); opacity: .32; animation: drift 18s ease-in-out infinite alternate; }
.orb-a { width: 420px; height: 420px; left: -220px; top: 15%; background: radial-gradient(circle, var(--blue), transparent 70%); }
.orb-b { width: 480px; height: 480px; right: -260px; top: 42%; background: radial-gradient(circle, var(--magenta), transparent 70%); animation-delay: -6s; }
.orb-c { width: 360px; height: 360px; left: 42%; bottom: -220px; background: radial-gradient(circle, var(--cyan), transparent 70%); animation-delay: -11s; }
.grain { position: absolute; inset: 0; opacity: .17; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 21, .78);
  backdrop-filter: blur(22px) saturate(145%);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: min(300px, 53vw); flex: 0 0 auto; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 25px; }
.site-nav a {
  position: relative;
  color: #e8eaff;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 850;
  letter-spacing: -.01em;
}
.site-nav a:not(.nav-live)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  transition: right .2s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--electric); }
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgba(248, 255, 70, .38);
  border-radius: 999px;
  background: linear-gradient(115deg, rgba(248, 255, 70, .14), rgba(56, 232, 255, .08));
  box-shadow: 0 0 26px rgba(248, 255, 70, .09);
}
.nav-live:hover { border-color: var(--electric); box-shadow: 0 0 32px rgba(248, 255, 70, .2); }
.menu-toggle { display: none; width: 48px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: var(--panel); cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.visual-marquee { position: relative; z-index: 20; border-bottom: 1px solid var(--line); overflow: hidden; background: #080a20; }
.visual-marquee-bottom { border-top: 1px solid var(--line); border-bottom: 0; }
.marquee-slides { position: relative; min-height: 158px; }
.marquee-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 4px 30px;
  padding: 25px max(26px, calc((100vw - var(--max-width)) / 2));
  color: white;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity .8s ease, transform 1.1s ease, visibility .8s;
  isolation: isolate;
}
.marquee-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(4, 5, 18, .9) 0%, rgba(4, 5, 18, .46) 58%, rgba(4, 5, 18, .78) 100%), var(--slide-image);
  background-position: center;
  background-size: cover;
}
.marquee-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, transparent 25%, rgba(255,255,255,.14) 40%, transparent 55%);
  transform: translateX(-100%);
  animation: marqueeShine 5.4s ease-in-out infinite;
}
.marquee-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.marquee-kicker { align-self: end; color: var(--electric); font-size: .75rem; font-weight: 950; letter-spacing: .18em; text-transform: uppercase; }
.marquee-slide strong { grid-row: 2; font-size: clamp(1.65rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.marquee-slide em { grid-column: 2; grid-row: 1 / span 2; align-self: center; min-width: 150px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(5,6,21,.46); text-align: center; font-style: normal; font-weight: 900; backdrop-filter: blur(12px); }
.marquee-dots { position: absolute; z-index: 5; right: max(26px, calc((100vw - var(--max-width)) / 2)); bottom: 15px; display: flex; gap: 7px; }
.marquee-dots button { width: 24px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.28); cursor: pointer; transition: width .2s ease, background .2s ease; }
.marquee-dots button.is-active { width: 42px; background: var(--electric); }

.hero { padding: 92px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: clamp(44px, 7vw, 96px); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 15px; color: var(--electric); font-size: .76rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 2px; border-radius: 999px; background: currentColor; box-shadow: 0 0 12px currentColor; }
.live-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--danger); box-shadow: 0 0 0 0 rgba(255,85,118,.7); animation: pulse 1.8s infinite; }
.hero h1,
.page-hero h1,
.error-shell h1 { margin: 0; font-size: clamp(3.7rem, 8.4vw, 8rem); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.hero h1 span,
.page-hero h1 span,
.error-shell h1 span { display: block; color: transparent; background: linear-gradient(90deg, var(--electric), var(--cyan) 50%, var(--magenta)); -webkit-background-clip: text; background-clip: text; filter: drop-shadow(0 0 24px rgba(56,232,255,.18)); }
.hero-lead { max-width: 660px; margin: 25px 0 0; color: #c8cce2; font-size: clamp(1.02rem, 1.9vw, 1.26rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -.015em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #070815; background: linear-gradient(105deg, var(--electric), #c9ff59 62%, var(--cyan)); box-shadow: 0 16px 36px rgba(248,255,70,.17); }
.btn-primary:hover { box-shadow: 0 20px 44px rgba(248,255,70,.27); }
.btn-glass { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.btn-glass:hover,
.btn-outline:hover { border-color: rgba(248,255,70,.55); background: rgba(248,255,70,.08); }
.btn-outline { color: var(--ink); border-color: rgba(255,255,255,.18); background: transparent; }
.btn-small { min-height: 42px; padding: 0 14px; border-radius: 12px; font-size: .83rem; }

.mini-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.mini-proof div { padding: 15px 14px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.035); }
.mini-proof strong { display: block; color: var(--ink); font-size: .88rem; }
.mini-proof span { display: block; margin-top: 3px; color: var(--muted); font-size: .72rem; line-height: 1.35; }

.hero-art { position: relative; min-height: 610px; perspective: 1000px; }
.energy-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(56,232,255,.22); border-radius: 50%; transform: translate(-50%, -50%); animation: spin 18s linear infinite; }
.ring-1 { width: 520px; height: 520px; border-style: dashed; }
.ring-2 { width: 400px; height: 400px; border-color: rgba(255,78,219,.26); animation-direction: reverse; animation-duration: 13s; }
.ring-3 { width: 290px; height: 290px; border-width: 2px; border-color: rgba(248,255,70,.28); animation-duration: 8s; }
.card-stack { position: absolute; inset: 80px 65px 82px 65px; transform-style: preserve-3d; }
.show-card { position: absolute; left: 50%; top: 50%; width: min(330px, 70%); aspect-ratio: .7; border: 8px solid rgba(255,255,255,.85); border-radius: 26px; box-shadow: var(--shadow); transform-origin: center; }
.show-card-back { background: linear-gradient(145deg, var(--violet), var(--blue), #061427); transform: translate(-62%, -48%) rotate(-13deg); opacity: .58; }
.show-card-mid { background: linear-gradient(145deg, var(--fire), var(--magenta), #17071f); transform: translate(-38%, -52%) rotate(12deg); opacity: .72; }
.show-card-front { overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; padding: 28px; background: radial-gradient(circle at 80% 14%, rgba(255,255,255,.72), transparent 11%), linear-gradient(145deg, var(--electric) 0 25%, var(--cyan) 25% 48%, var(--violet) 48% 70%, #090b23 70%); color: #070815; transform: translate(-50%, -50%) rotate(-1deg); }
.show-card-front::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(118deg, transparent 0 34px, rgba(255,255,255,.21) 36px 38px); mix-blend-mode: overlay; }
.show-card-tag { position: relative; z-index: 2; font-size: .69rem; font-weight: 950; letter-spacing: .18em; }
.show-card-front strong { position: relative; z-index: 2; font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: clamp(3.7rem, 8vw, 6rem); line-height: .78; letter-spacing: -.045em; }
.show-card-front em { position: relative; z-index: 2; align-self: flex-start; padding: 9px 12px; color: var(--electric); background: #070815; font-style: normal; font-size: .7rem; font-weight: 950; letter-spacing: .14em; }
.holo-card::after,
.holo-sheen { content: ""; position: absolute; inset: -45%; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.42) 43%, rgba(56,232,255,.3) 48%, rgba(255,78,219,.28) 52%, transparent 66%); transform: translateX(-42%) rotate(8deg); animation: holoSweep 5.8s ease-in-out infinite; pointer-events: none; }
.hero-burst { position: absolute; display: grid; place-items: center; width: 66px; height: 66px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(8,10,31,.72); backdrop-filter: blur(10px); font-size: 1.6rem; box-shadow: 0 0 38px rgba(56,232,255,.2); animation: float 4.3s ease-in-out infinite; }
.burst-electric { top: 9%; right: 12%; color: var(--electric); }
.burst-fire { left: 2%; bottom: 15%; color: var(--fire); animation-delay: -1.7s; }
.hero-chip { position: absolute; z-index: 5; min-width: 200px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 16px; background: rgba(7,9,29,.83); box-shadow: 0 18px 35px rgba(0,0,0,.31); backdrop-filter: blur(16px); }
.hero-chip span { display: block; color: var(--cyan); font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero-chip strong { display: block; margin-top: 3px; font-size: .9rem; }
.chip-a { top: 9%; left: -2%; transform: rotate(-3deg); }
.chip-b { right: -4%; top: 47%; transform: rotate(3deg); }
.chip-c { left: 5%; bottom: 3%; transform: rotate(2deg); }

.type-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.type-pill { display: flex; align-items: center; gap: 14px; min-height: 108px; padding: 18px; border-right: 1px solid var(--line); text-decoration: none; transition: background .2s ease; }
.type-pill:last-child { border-right: 0; }
.type-pill:hover { background: rgba(255,255,255,.055); }
.type-pill i { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; font-style: normal; font-size: 1.25rem; }
.type-pill strong { display: block; }
.type-pill small { display: block; margin-top: 2px; color: var(--muted); }
.type-electric i { color: #071019; background: var(--electric); box-shadow: 0 0 28px rgba(248,255,70,.2); }
.type-fire i { color: white; background: linear-gradient(145deg, var(--fire), var(--magenta)); }
.type-water i { color: #071019; background: linear-gradient(145deg, var(--cyan), var(--blue)); }
.type-psychic i { color: white; background: linear-gradient(145deg, var(--violet), var(--magenta)); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-heading > div { max-width: 820px; }
.section-heading h2,
.element-panel h2,
.live-copy h2,
.newsletter-panel h2 { margin: 0; font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .92; letter-spacing: -.058em; }
.section-heading h2 span { color: var(--electric); }
.section-heading p:not(.eyebrow),
.element-panel p,
.live-copy p,
.newsletter-panel p { color: var(--muted); font-size: 1.02rem; }

.holo-panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 34%),
    radial-gradient(circle at 90% 6%, rgba(56,232,255,.08), transparent 33%),
    var(--panel);
  box-shadow: 0 22px 68px rgba(0,0,0,.27);
  backdrop-filter: blur(16px);
}
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card { overflow: hidden; border-radius: var(--radius); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(248,255,70,.35); box-shadow: 0 28px 74px rgba(0,0,0,.38); }
.product-media { position: relative; display: block; aspect-ratio: 1 / .86; overflow: hidden; background: #0b0e28; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-badge { position: absolute; z-index: 4; top: 14px; left: 14px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.21); border-radius: 999px; color: var(--electric); background: rgba(4,5,18,.78); backdrop-filter: blur(10px); font-size: .66rem; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.product-body { padding: 21px; }
.card-kicker { margin: 0 0 5px; color: var(--cyan); font-size: .69rem; font-weight: 950; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3,
.release-card h3 { margin: 0; font-size: 1.35rem; line-height: 1.08; letter-spacing: -.035em; }
.product-set { margin: 8px 0 0; color: #e0e2f2; font-size: .88rem; font-weight: 700; }
.product-description { min-height: 66px; margin: 13px 0 0; color: var(--muted); font-size: .86rem; }
.product-footer { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: 20px; }
.product-footer strong { display: block; font-size: .95rem; }
.product-footer span { display: block; margin-top: 2px; color: var(--mint); font-size: .72rem; font-weight: 800; }

.element-zone { overflow: hidden; }
.element-panel { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 55px; min-height: 560px; padding: clamp(34px, 6vw, 72px); border-radius: 38px; overflow: hidden; }
.element-panel::after { content: ""; position: absolute; inset: auto -12% -45% auto; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(159,85,255,.2), transparent 68%); }
.element-panel-copy { position: relative; z-index: 3; }
.element-wheel { position: relative; z-index: 3; width: min(410px, 84vw); aspect-ratio: 1; justify-self: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: spin 24s linear infinite; }
.element-wheel::before,
.element-wheel::after { content: ""; position: absolute; inset: 13%; border: 1px dashed rgba(56,232,255,.25); border-radius: 50%; }
.element-wheel::after { inset: 28%; border-style: solid; border-color: rgba(248,255,70,.24); }
.wheel-core { position: absolute; left: 50%; top: 50%; width: 116px; height: 116px; transform: translate(-50%, -50%); display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--electric), var(--cyan)); color: #070815; box-shadow: 0 0 68px rgba(56,232,255,.29); }
.wheel-core span { font-family: Impact, sans-serif; font-size: 3rem; letter-spacing: -.06em; }
.wheel-node { position: absolute; display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; background: #0b0e2a; box-shadow: 0 13px 30px rgba(0,0,0,.35); font-size: 1.25rem; animation: spin 24s linear infinite reverse; }
.wheel-electric { left: 50%; top: -30px; transform: translateX(-50%); color: var(--electric); }
.wheel-fire { right: 2%; top: 18%; color: var(--fire); }
.wheel-water { right: 2%; bottom: 18%; color: var(--cyan); }
.wheel-leaf { left: 50%; bottom: -30px; transform: translateX(-50%); color: var(--mint); }
.wheel-psychic { left: 2%; bottom: 18%; color: var(--magenta); }
.wheel-cosmic { left: 2%; top: 18%; color: var(--gold); }

.release-preview { background: linear-gradient(180deg, transparent, rgba(255,255,255,.018), transparent); }
.release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.release-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.release-card { overflow: hidden; border-radius: var(--radius); transition: transform .22s ease, border-color .22s ease; }
.release-card:hover { transform: translateY(-5px); border-color: rgba(56,232,255,.38); }
.release-media { position: relative; aspect-ratio: 1.3 / 1; overflow: hidden; background: #0b0e28; }
.release-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.release-card:hover .release-media img { transform: scale(1.045); }
.release-date { position: absolute; z-index: 3; top: 14px; left: 14px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(5,6,21,.78); font-size: .7rem; font-weight: 900; backdrop-filter: blur(10px); }
.release-body { padding: 22px; }
.release-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.release-meta span,
.release-meta strong { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; font-size: .7rem; }
.release-meta strong { color: var(--electric); }
.status-today { color: white !important; background: var(--danger); border-color: var(--danger) !important; }
.status-released { color: var(--muted) !important; }
.release-body > p:not(.card-kicker) { color: var(--muted); font-size: .88rem; }
.release-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; }
.text-link { color: #d9ddf2; font-size: .75rem; font-weight: 800; text-decoration: none; }
.text-link:hover { color: var(--electric); }
.accent-fire .card-kicker { color: var(--fire); }
.accent-water .card-kicker { color: var(--cyan); }
.accent-psychic .card-kicker { color: var(--magenta); }

.live-panel { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 52px; min-height: 430px; padding: clamp(30px, 6vw, 70px); border-radius: 36px; overflow: hidden; }
.live-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(112deg, rgba(255,78,219,.05), transparent 44%, rgba(248,255,70,.05)); }
.live-visual { position: relative; z-index: 2; width: min(310px, 70vw); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; }
.live-orbit { position: absolute; inset: 5%; border: 1px dashed rgba(248,255,70,.35); border-radius: 50%; animation: spin 14s linear infinite; }
.live-orbit.orbit-two { inset: 22%; border-style: solid; border-color: rgba(56,232,255,.37); animation-direction: reverse; animation-duration: 9s; }
.live-mark { display: grid; place-items: center; width: 145px; height: 145px; border-radius: 50%; color: #070815; background: linear-gradient(145deg, var(--electric), var(--cyan)); font-family: Impact, sans-serif; font-size: 2.6rem; letter-spacing: .04em; box-shadow: 0 0 80px rgba(56,232,255,.25); }
.live-copy { position: relative; z-index: 2; }

.newsletter-panel { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 40px; padding: clamp(28px, 5vw, 58px); border: 1px solid rgba(248,255,70,.23); border-radius: 32px; background: linear-gradient(135deg, rgba(248,255,70,.08), rgba(56,232,255,.06) 55%, rgba(255,78,219,.06)); }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-form input,
.search-box input { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink); background: rgba(4,5,18,.72); outline: none; }
.newsletter-form input:focus,
.search-box input:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(56,232,255,.09); }
.form-message { grid-column: 1 / -1; color: var(--electric); font-size: .78rem; }

.page-hero { padding: 88px 0 68px; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 64px; }
.page-hero p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.shop-orb,
.radar-orb { position: relative; width: min(420px, 82vw); aspect-ratio: 1; justify-self: center; display: grid; place-items: center; border-radius: 50%; overflow: hidden; }
.shop-orb::before,
.radar-orb::before { content: ""; position: absolute; inset: 0; background: conic-gradient(from 0deg, rgba(248,255,70,.12), rgba(56,232,255,.25), rgba(159,85,255,.2), rgba(255,78,219,.17), rgba(248,255,70,.12)); animation: spin 12s linear infinite; }
.shop-orb strong,
.radar-orb strong { position: relative; z-index: 4; color: white; font-family: Impact, sans-serif; font-size: clamp(3rem, 8vw, 5.7rem); line-height: .8; text-align: center; letter-spacing: -.03em; text-shadow: 0 0 28px rgba(56,232,255,.2); }
.shop-orb-ring,
.radar-ring { position: absolute; z-index: 2; inset: 9%; border: 1px solid rgba(255,255,255,.23); border-radius: 50%; }
.ring-two,
.radar-b { inset: 25%; border-style: dashed; animation: spin 9s linear infinite reverse; }
.ring-three,
.radar-c { inset: 38%; border-color: rgba(248,255,70,.3); }
.release-legend { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 26px; color: var(--muted); font-size: .82rem; }
.release-legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-upcoming { background: var(--electric); box-shadow: 0 0 12px rgba(248,255,70,.4); }
.dot-today { background: var(--danger); box-shadow: 0 0 12px rgba(255,85,118,.4); }
.dot-released { background: #69708d; }
.radar-orb em { position: absolute; z-index: 4; bottom: 21%; color: var(--electric); font-style: normal; font-weight: 950; letter-spacing: .2em; }
.radar-sweep { position: absolute; z-index: 3; width: 50%; height: 50%; left: 50%; top: 0; transform-origin: left bottom; background: linear-gradient(135deg, rgba(56,232,255,.25), transparent 60%); animation: spin 4.5s linear infinite; }

.store-notice { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 14px 17px; border-radius: 16px; color: var(--muted); font-size: .86rem; }
.store-notice strong { color: var(--ink); }
.notice-dot { width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 15px rgba(255,215,99,.45); }
.shop-tools,
.release-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 28px; padding: 16px; border-radius: 20px; }
.search-box { flex: 1 1 420px; }
.filter-list { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { min-height: 40px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); cursor: pointer; font-size: .79rem; font-weight: 850; }
.filter-btn:hover,
.filter-btn.is-active { color: #070815; border-color: var(--electric); background: var(--electric); }
.release-note { color: var(--muted); font-size: .75rem; text-align: right; }
.empty-state { padding: 44px; border: 1px dashed var(--line); border-radius: 22px; text-align: center; color: var(--muted); }
.empty-state strong { display: block; color: var(--ink); font-size: 1.2rem; }
.empty-state span { display: block; margin-top: 4px; }
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.process-card { min-height: 240px; padding: 27px; border-radius: 24px; }
.process-card > span { color: var(--electric); font-size: .75rem; font-weight: 950; letter-spacing: .16em; }
.process-card h3 { margin: 42px 0 8px; font-size: 1.45rem; }
.process-card p { color: var(--muted); font-size: .9rem; }

.site-footer { border-top: 1px solid var(--line); background: rgba(3,4,14,.74); }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .9fr; gap: 54px; padding: 60px 0 42px; }
.footer-brand img { width: min(310px, 100%); }
.footer-brand p { max-width: 520px; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links h3 { margin: 0 0 8px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--electric); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 20px 0 28px; border-top: 1px solid var(--line); color: #8d92ad; font-size: .73rem; }
.footer-bottom span:last-child { max-width: 720px; text-align: right; }

.error-page { min-height: 100vh; display: grid; place-items: center; }
.error-shell { width: min(820px, calc(100% - 36px)); padding: 60px; border: 1px solid var(--line); border-radius: 32px; background: var(--panel); box-shadow: var(--shadow); }
.error-shell img { width: 290px; margin-bottom: 42px; }
.error-shell p:not(.eyebrow) { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes drift { to { transform: translate3d(50px, -35px, 0) scale(1.08); } }
@keyframes float { 50% { transform: translateY(-10px) rotate(4deg); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,85,118,0); } 100% { box-shadow: 0 0 0 0 rgba(255,85,118,0); } }
@keyframes holoSweep { 0%, 18% { transform: translateX(-65%) rotate(8deg); } 55%, 100% { transform: translateX(65%) rotate(8deg); } }
@keyframes marqueeShine { 0%, 22% { transform: translateX(-100%); } 55%, 100% { transform: translateX(130%); } }


.catalog-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(56,232,255,.08), transparent 28rem),
    radial-gradient(circle at 90% 72%, rgba(159,85,255,.09), transparent 30rem);
}
.catalog-search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(190px, .42fr) auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 22px;
}
.catalog-search-field,
.catalog-order-field { display: grid; gap: 8px; }
.catalog-search-field > span,
.catalog-order-field > span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-search-field input,
.catalog-order-field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(4,5,18,.78);
  outline: none;
}
.catalog-order-field select { cursor: pointer; }
.catalog-order-field option { color: #11152e; background: #fff; }
.catalog-search-field input:focus,
.catalog-order-field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56,232,255,.09);
}
.catalog-search-button { min-height: 52px; }
.catalog-search-panel[aria-busy="true"] { opacity: .82; }
.catalog-search-panel button:disabled,
.catalog-pagination button:disabled { cursor: wait; opacity: .62; }
.catalog-status {
  min-height: 28px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .86rem;
}
.catalog-status[data-state="success"] { color: var(--mint); }
.catalog-status[data-state="error"] { color: #ff9bb0; }
.catalog-status[data-state="loading"] { color: var(--electric); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.catalog-grid.is-loading { opacity: .56; pointer-events: none; }
.catalog-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 23px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.catalog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(56,232,255,.42);
  box-shadow: 0 24px 72px rgba(0,0,0,.34), 0 0 35px rgba(56,232,255,.08);
}
.catalog-card-media {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 22px 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(56,232,255,.15), transparent 44%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}
.catalog-card-media img {
  position: relative;
  z-index: 2;
  width: min(230px, 88%);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.45));
}
.catalog-card-body { padding: 19px; }
.catalog-card-body h3 {
  margin: 2px 0 7px;
  font-size: 1.16rem;
  line-height: 1.12;
}
.catalog-set {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
}
.catalog-set span { color: var(--cyan); font-weight: 850; }
.catalog-rarity { margin: 7px 0 15px; color: #e3e5f7; font-size: .78rem; }
.catalog-card-footer {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.catalog-card-footer strong { color: var(--electric); font-size: .83rem; }
.catalog-card-footer .text-link { width: fit-content; font-size: .78rem; }
.catalog-pagination { display: flex; justify-content: center; padding-top: 28px; }
.catalog-source { margin: 28px auto 0; max-width: 820px; color: #8d92ad; font-size: .73rem; text-align: center; }

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 560px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .type-pill:nth-child(2) { border-right: 0; }
  .type-pill:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .element-panel { grid-template-columns: 1fr; }
  .element-wheel { margin-top: 28px; }
  .newsletter-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7,9,29,.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
  }
  .site-nav.is-open { display: flex; flex-direction: column; }
  .site-nav a { padding: 10px 8px; }
  .site-nav a::after { display: none; }
  .nav-live { justify-content: center; }
  .menu-toggle { display: block; }
  .marquee-slide { grid-template-columns: 1fr; padding-inline: 22px; }
  .marquee-slide em { display: none; }
  .marquee-slide strong { font-size: clamp(1.65rem, 7vw, 2.6rem); }
  .marquee-dots { right: 22px; }
  .mini-proof { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .release-grid,
  .release-page-grid { grid-template-columns: 1fr; }
  .live-panel { grid-template-columns: 1fr; }
  .live-visual { width: 230px; }
  .shop-tools,
  .release-toolbar { align-items: stretch; flex-direction: column; }
  .catalog-search-panel { grid-template-columns: 1fr 1fr; }
  .catalog-search-button { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .release-note { text-align: left; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 24px, var(--max-width)); }
  .section { padding: 72px 0; }
  .nav-shell { min-height: 70px; }
  .brand { width: min(250px, 68vw); }
  .visual-marquee { display: none; }
  .hero { padding-top: 64px; }
  .hero h1,
  .page-hero h1,
  .error-shell h1 { font-size: clamp(3.1rem, 17vw, 5.2rem); }
  .hero-art { min-height: 470px; }
  .card-stack { inset: 55px 12px 68px; }
  .show-card { width: min(280px, 72%); }
  .hero-chip { min-width: 160px; padding: 10px 12px; }
  .hero-chip strong { font-size: .77rem; }
  .chip-a { left: 0; }
  .chip-b { right: 0; }
  .chip-c { left: 0; }
  .ring-1 { width: 420px; height: 420px; }
  .ring-2 { width: 320px; height: 320px; }
  .ring-3 { width: 240px; height: 240px; }
  .type-grid { grid-template-columns: 1fr; }
  .type-pill { border-right: 0; border-bottom: 1px solid var(--line); }
  .type-pill:last-child { border-bottom: 0; }
  .product-grid,
  .shop-grid,
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-search-panel { grid-template-columns: 1fr; }
  .catalog-search-button { grid-column: auto; width: 100%; }
  .catalog-card-media { min-height: 390px; }
  .element-panel { padding: 28px 22px; }
  .element-wheel { width: 290px; }
  .wheel-node { width: 48px; height: 48px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form .btn { width: 100%; }
  .page-hero { padding-top: 64px; }
  .release-actions { align-items: flex-start; flex-direction: column; }
  .filter-list { width: 100%; }
  .filter-btn { flex: 1 1 auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
  .error-shell { padding: 34px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
