/** Shopify CDN: Minification failed

Line 19:11 Expected identifier but found whitespace
Line 19:13 Unexpected "{"
Line 19:23 Expected ":"
Line 20:12 Expected identifier but found whitespace
Line 20:14 Unexpected "{"
Line 20:24 Expected ":"
Line 21:8 Expected identifier but found whitespace
Line 21:10 Unexpected "{"
Line 21:20 Expected ":"
Line 22:9 Expected identifier but found whitespace
... and 29 more hidden warnings

**/
/* Theme CSS with Shopify Settings */
:root {
  /* Colors - linked to Shopify theme settings */
  --accent: {{ settings.color_accent | default: '#00F5D4' }};
  --accent2: {{ settings.color_accent2 | default: '#FEE440' }};
  --hot: {{ settings.color_hot | default: '#F72585' }};
  --blue: {{ settings.color_blue | default: '#4361EE' }};
  --purple: {{ settings.color_purple | default: '#7209B7' }};
  --bg: {{ settings.color_bg | default: '#030306' }};
  --surface: {{ settings.color_surface | default: '#08080F' }};
  --card: {{ settings.color_card | default: '#0B0B14' }};
  --border: {{ settings.color_border | default: '#16162A' }};
  --border-hover: {{ settings.color_border_hover | default: '#2A2A4A' }};
  --text: {{ settings.color_text | default: '#E6E6F0' }};
  --dim: {{ settings.color_dim | default: '#5A5A7A' }};
  --muted: {{ settings.color_muted | default: '#33334A' }};
}

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

html { 
  scroll-behavior: smooth; 
}

body { 
  font-family: 'Chakra Petch', sans-serif; 
  background: var(--bg); 
  color: var(--text); 
  overflow-x: hidden; 
  cursor: crosshair; 
}

::selection { 
  background: var(--accent); 
  color: var(--bg); 
}

::-webkit-scrollbar { 
  width: 4px; 
}

::-webkit-scrollbar-track { 
  background: var(--bg); 
}

::-webkit-scrollbar-thumb { 
  background: var(--accent); 
  border-radius: 4px; 
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(3,3,6,0.85);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Anybody', sans-serif;
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .ico {
  width: 28px;
  height: 28px;
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-logo .ico::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.nav-logo b {
  color: var(--accent);
}

.nav-r {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-r a {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.2s;
  position: relative;
}

.nav-r a:hover {
  color: var(--accent);
}

.nav-r a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-r a:hover::after {
  width: 100%;
}

.nav-shop {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 8px 22px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: filter 0.3s !important;
}

.nav-shop::after {
  display: none !important;
}

.nav-shop:hover {
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(0,245,212,0.5));
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left {
  z-index: 2;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 6px 16px;
  margin-bottom: 32px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  background: rgba(0,245,212,0.04);
}

.hero-chip-pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,245,212,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,245,212,0); }
}

.hero-chip span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Anybody', sans-serif;
  font-size: clamp(50px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.h-line {
  display: block;
  overflow: hidden;
}

.h-line-inner {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.h-line:nth-child(1) .h-line-inner { animation-delay: 0.4s; }
.h-line:nth-child(2) .h-line-inner { animation-delay: 0.55s; }
.h-line:nth-child(3) .h-line-inner { animation-delay: 0.7s; }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.h-glow {
  color: var(--accent);
  text-shadow: 0 0 80px rgba(0,245,212,0.3), 0 0 160px rgba(0,245,212,0.1);
  position: relative;
}

.h-outline {
  -webkit-text-stroke: 1.5px var(--muted);
  color: transparent;
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch:hover::before {
  animation: glitch1 0.3s ease-in-out;
  color: var(--hot);
  -webkit-text-stroke: 0;
  opacity: 0.7;
  z-index: -1;
}

.glitch:hover::after {
  animation: glitch2 0.3s ease-in-out;
  color: var(--blue);
  -webkit-text-stroke: 0;
  opacity: 0.7;
  z-index: -1;
}

@keyframes glitch1 {
  0% { transform: translate(0); opacity: 0; }
  20% { transform: translate(-4px, 2px); opacity: 0.7; }
  40% { transform: translate(4px, -2px); opacity: 0.7; }
  60% { transform: translate(-2px, 4px); opacity: 0.7; }
  80% { transform: translate(2px, -4px); opacity: 0.7; }
  100% { transform: translate(0); opacity: 0; }
}

@keyframes glitch2 {
  0% { transform: translate(0); opacity: 0; }
  20% { transform: translate(4px, -2px); opacity: 0.7; }
  40% { transform: translate(-4px, 2px); opacity: 0.7; }
  60% { transform: translate(2px, -4px); opacity: 0.7; }
  80% { transform: translate(-2px, 4px); opacity: 0.7; }
  100% { transform: translate(0); opacity: 0; }
}

.hero-p {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 0.9s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.6s ease-out 1s forwards;
}

.hb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hb-fill {
  background: var(--accent);
  color: var(--bg);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.hb-fill:hover {
  filter: brightness(1.15);
  box-shadow: 0 4px 30px rgba(0,245,212,0.3);
  transform: translateY(-2px);
}

.hb-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.hb-ghost:hover {
  border-color: var(--accent);
  background: rgba(0,245,212,0.04);
}

/* HERO RIGHT — THREE.JS */
.hero-3d {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

#three-canvas {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  cursor: grab;
}

#three-canvas:active {
  cursor: grabbing;
}

.three-label {
  text-align: center;
  margin-top: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.three-label b {
  color: var(--accent);
}

/* PRODUCTS — TILT CARDS */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.p-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
  transform-style: preserve-3d;
  perspective: 800px;
}

.p-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,245,212,0.05);
}

.p-card:hover .p-glow {
  opacity: 1;
}

.p-card:hover .p-emoji {
  transform: scale(1.15);
}

.p-card:hover .p-add {
  opacity: 1;
  transform: translateY(0);
}

.p-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
  border-radius: 14px;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(0,245,212,0.08), transparent 60%);
}

.p-vis {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.p-vis-bg {
  position: absolute;
  inset: 0;
}

.pv1 { background: linear-gradient(145deg, #060612, #0d0d24, #060612); }
.pv2 { background: linear-gradient(145deg, #06120a, #0d2414, #06120a); }
.pv3 { background: linear-gradient(145deg, #120606, #240d0d, #120606); }
.pv4 { background: linear-gradient(145deg, #060a12, #0d1424, #060a12); }
.pv5 { background: linear-gradient(145deg, #0c0c04, #1a1a08, #0c0c04); }
.pv6 { background: linear-gradient(145deg, #0a0612, #140d24, #0a0612); }

.p-emoji {
  font-size: 64px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}

.p-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  z-index: 3;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.pb-hot { background: var(--hot); color: #fff; }
.pb-new { background: var(--accent); color: var(--bg); }
.pb-og { background: var(--accent2); color: var(--bg); }

.p-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: 12px;
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 3;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

.p-add:hover {
  filter: brightness(1.15);
}

.p-info {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.p-name {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.p-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.p-price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

/* PROCESS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}

.step {
  padding: 44px 28px;
  border: 1px solid var(--border);
  margin-left: -1px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.step:first-child {
  border-radius: 14px 0 0 14px;
  margin-left: 0;
}

.step:last-child {
  border-radius: 0 14px 14px 0;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  background: var(--card);
}

.step:hover .step-n {
  color: var(--accent);
}

.step-n {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  color: var(--border);
  transition: color 0.3s;
  margin-bottom: 28px;
}

.step-t {
  font-family: 'Anybody', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step-d {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.7;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sliceIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* SCROLL REVEAL */
.sr {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Slam variant */
.sr-slam {
  opacity: 0;
  transform: translateY(80px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sr-slam.vis {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-3d { max-width: 400px; margin: 0 auto; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { margin-left: 0; margin-top: -1px; border-radius: 0 !important; }
  .step:first-child { border-radius: 14px 14px 0 0 !important; }
  .step:last-child { border-radius: 0 0 14px 14px !important; }
}

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-r a:not(.nav-shop) { display: none; }
  .products { grid-template-columns: 1fr; }
  .sec { padding: 80px 20px; }
  .hero { padding: 80px 20px 40px; }
  .cursor-dot, .cursor-ring { display: none; }
}