/* ============================================================
   CANDY DREAMZ — Global Design System
   candy-dreamz.com  |  Walk Loud. Stand Different.
   ============================================================ */

/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --pink:    #ff0066;
  --orange:  #ff6600;
  --yellow:  #ffee00;
  --green:   #00ff88;
  --cyan:    #00ccff;
  --purple:  #aa00ff;
  --white:   #ffffff;
  --black:   #000000;
  --bg:      #050505;
  --bg2:     #0a0a0a;
  --bg3:     #111111;
  --muted:   #666666;
  --border:  rgba(255,255,255,0.08);

  --font-display: 'Bangers', cursive;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --glow-pink:   0 0 20px rgba(255,0,102,0.5), 0 0 40px rgba(255,0,102,0.2);
  --glow-cyan:   0 0 20px rgba(0,204,255,0.5), 0 0 40px rgba(0,204,255,0.2);
  --glow-green:  0 0 20px rgba(0,255,136,0.5), 0 0 40px rgba(0,255,136,0.2);

  --nav-h: 72px;
  --max-w: 1280px;
  --radius: 0px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.grad-text {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-2 {
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-rainbow {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-pink  { text-shadow: var(--glow-pink); color: var(--pink); }
.neon-cyan  { text-shadow: var(--glow-cyan); color: var(--cyan); }
.neon-green { text-shadow: var(--glow-green); color: var(--green); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(255,0,102,0.4);
}
.btn-primary:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: inset 0 0 20px rgba(255,0,102,0.1);
}

.btn-rainbow {
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow), var(--green), var(--cyan), var(--purple));
  color: var(--black);
  font-weight: 900;
  background-size: 200%;
  animation: gradientShift 3s linear infinite;
}
.btn-rainbow:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,0,102,0.4); }

.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Navigation ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--pink); }
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee-bar {
  width: 100%;
  background: rgba(255,0,102,0.12);
  border-top: 1px solid rgba(255,0,102,0.3);
  border-bottom: 1px solid rgba(255,0,102,0.3);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
}
.marquee-dot { color: rgba(255,0,102,0.4) !important; }

/* ── Section Headers ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.section-sub {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
  margin-top: 14px;
}

/* ── Paint Drip Divider ──────────────────────────────────────── */
.drip-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.drip-divider svg { display: block; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 20px);
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-bg-burst {
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
  transform: scale(1.2);
  filter: blur(8px) brightness(0.22) saturate(1.8);
  animation: burstPulse 8s ease-in-out infinite alternate;
}
@keyframes burstPulse {
  0% { transform: scale(1.2); filter: blur(8px) brightness(0.22) saturate(1.8); }
  100% { transform: scale(1.26); filter: blur(9px) brightness(0.18) saturate(2.0); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,0,102,0.08) 0%, rgba(0,204,255,0.05) 40%, transparent 70%),
    linear-gradient(to bottom, #050505 0%, #080808 100%);
}
.section-logo-mark {
  display: block;
  width: 52px;
  height: auto;
  margin: 0 auto 28px;
  opacity: 0.07;
  filter: brightness(10) saturate(0);
  pointer-events: none;
  user-select: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  width: 100%;
  max-width: 1000px;
}
.hero-logo {
  width: min(900px, 92vw);
  margin-bottom: 48px;
  animation: fadeInDown 0.8s ease forwards;
  filter: drop-shadow(0 0 60px rgba(255,0,102,0.5)) drop-shadow(0 0 100px rgba(0,204,255,0.25));
}
.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.75);
  border: 3px double transparent;
  background-clip: padding-box;
  position: relative;
  padding: 20px 48px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--pink), var(--yellow), var(--green), var(--cyan), var(--purple));
  z-index: -1;
}
.hero-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: -1;
}
.hero-badge-inner { position: relative; z-index: 1; }
.hero-tagline-1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(255,0,102,0.55));
  display: block;
}
.hero-tagline-2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0,204,255,0.55));
  display: block;
}
.hero-est {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.hero-est-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--pink)); }
.hero-est-line.r { background: linear-gradient(to left, transparent, var(--pink)); }
.hero-est-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Badge corner accents */
.hero-badge .corner { position: absolute; width: 14px; height: 14px; }
.hero-badge .corner.tl { top: -2px; left: -2px; border-top: 2px solid var(--pink); border-left: 2px solid var(--pink); }
.hero-badge .corner.tr { top: -2px; right: -2px; border-top: 2px solid var(--green); border-right: 2px solid var(--green); }
.hero-badge .corner.bl { bottom: -2px; left: -2px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.hero-badge .corner.br { bottom: -2px; right: -2px; border-bottom: 2px solid var(--yellow); border-right: 2px solid var(--yellow); }

.hero-sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2em;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.8s ease forwards;
  opacity: 0;
}

/* Drip animation overlay on hero */
.hero-drips {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

/* ── Cards ───────────────────────────────────────────────────── */
.product-card {
  display: block;
  border: 1px solid var(--border);
  background: var(--bg3);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,0,102,0.4);
  box-shadow: 0 12px 40px rgba(255,0,102,0.15);
}
.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg2);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-card-info { padding: 16px; }
.product-card-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.product-card:hover .product-card-name { color: var(--pink); }
.product-card-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
}
.product-card-price strong { color: var(--white); }

/* ── Journey Steps ───────────────────────────────────────────── */
.step-card {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  padding: 32px;
  transition: background 0.3s, border-color 0.3s;
}
.step-card:hover {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.15);
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.05em;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 56px;
  height: 56px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-desc {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Value Pillars ───────────────────────────────────────────── */
.pillar-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
  transition: all 0.3s;
}
.pillar-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.pillar-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.pillar-desc {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── Page Hero (sub-pages) ───────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,0,102,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.95;
}
.page-hero-sub {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.8;
}

/* ── Filter Tabs ─────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab {
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
  background: transparent;
}
.filter-tab:last-child { border-right: none; }
.filter-tab:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.filter-tab.active { color: var(--pink); background: rgba(255,0,102,0.08); }

/* ── Product Grid ────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* ── Gallery Grid ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg3);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item.tall { aspect-ratio: 3/4; grid-row: span 1; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ── Design Studio ───────────────────────────────────────────── */
.studio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}
.studio-panel {
  border: 1px solid var(--border);
  background: var(--bg3);
  padding: 28px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.studio-panel-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.studio-preview {
  border: 1px solid var(--border);
  background: var(--bg3);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.studio-canvas-wrap { width: 100%; height: 100%; }
#studioCanvas { width: 100%; height: 100%; display: block; }

.color-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, border-color 0.15s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--white); transform: scale(1.15); }

.style-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.style-opt {
  padding: 10px;
  border: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
}
.style-opt:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.style-opt.active { border-color: var(--pink); color: var(--pink); background: rgba(255,0,102,0.06); }

.studio-section { margin-bottom: 24px; }
.studio-section label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(255,0,102,0.15);
}
.form-control::placeholder { color: rgba(255,255,255,0.25); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
option { background: var(--bg); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ── Sections ────────────────────────────────────────────────── */
section { padding: 100px 0; }
.section-dark { background: var(--black); }
.section-alt  { background: var(--bg2); }

/* ── Glow blobs ──────────────────────────────────────────────── */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-blob.pink  { background: rgba(255,0,102,0.2); }
.glow-blob.cyan  { background: rgba(0,204,255,0.2); }
.glow-blob.green { background: rgba(0,255,136,0.15); }

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band {
  padding: 80px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,0,102,0.08) 0%,
    rgba(0,204,255,0.08) 50%,
    rgba(170,0,255,0.08) 100%
  );
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-band-sub {
  font-family: var(--font-mono);
  color: var(--muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-band .btn { position: relative; z-index: 1; }

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--pink); color: var(--pink); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes drip {
  0%   { transform: scaleY(0) translateY(0); opacity: 0; transform-origin: top; }
  20%  { opacity: 1; }
  80%  { transform: scaleY(1) translateY(0); opacity: 1; }
  100% { transform: scaleY(1.08) translateY(4px); opacity: 0.7; }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Page Loader ─────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 200px; animation: float 2s ease-in-out infinite; }
.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  animation: loaderGrow 1.2s ease forwards;
}
@keyframes loaderGrow {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Lightbox ────────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── Toasts ──────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-left: 4px solid var(--pink);
  padding: 14px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  max-width: 320px;
  animation: fadeInUp 0.4s ease forwards;
  pointer-events: all;
}
.toast.success { border-left-color: var(--green); }
.toast.error   { border-left-color: var(--orange); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .studio-layout { grid-template-columns: 1fr; }
  .studio-panel { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .filter-tabs { border-left: none; border-right: none; }
  section { padding: 70px 0; }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .color-swatches { grid-template-columns: repeat(6, 1fr); }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print { #nav, #loader, #lightbox, #toast-container { display: none; } }
