:root {
  --pink: #c8c8d4;
  --pink-soft: #e0e0e8;
  --purple: #a8a8b8;
  --indigo: #9090a4;
  --ink: #ececf0;
  --ink-muted: #9898a8;
  --bg: #0a0a0e;
  --bg-elevated: #141418;
  --card: rgba(255, 255, 255, 0.045);
  --border: rgba(200, 200, 210, 0.2);
  --glow: rgba(200, 200, 220, 0.35);
  --glow-indigo: rgba(160, 160, 180, 0.3);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

.site-wallpaper {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image: url('assets/backgrounds/anime-flowers.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.32;
  filter: saturate(0.08) brightness(0.48) contrast(1.05);
  transform: scale(1.03);
  animation: siteWallDrift 28s ease-in-out infinite alternate;
}

.site-wallpaper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.6) 0%, rgba(10, 10, 14, 0.78) 45%, rgba(10, 10, 14, 0.92) 100%);
}

@keyframes siteWallDrift {
  from { transform: scale(1.03) translate(0, 0); }
  to { transform: scale(1.06) translate(-1%, -1%); }
}

.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(180, 180, 192, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(140, 140, 156, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200, 200, 212, 0.1), transparent 55%),
    var(--bg);
  animation: meshShift 20s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.06); }
}

#cursorTrail {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9999;
}

.sparkle-field, .orb-field {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}

.sparkle-field span {
  position: absolute;
  animation: sparkleFloat 7s ease-in-out infinite alternate;
}

.orb-field span {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: orbDrift 14s ease-in-out infinite alternate;
}

@keyframes sparkleFloat {
  from { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.15; }
  to { transform: translateY(-32px) rotate(25deg) scale(1.2); opacity: 0.75; }
}

@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); opacity: 0.25; }
  to { transform: translate(40px, -50px) scale(1.3); opacity: 0.55; }
}

.gradient-text, .gradient-text-static {
  background: linear-gradient(135deg, #fff 0%, var(--pink-soft) 40%, var(--purple) 70%, #787888 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientFlow 6s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.typing-glow {
  filter: drop-shadow(0 0 24px rgba(200, 200, 220, 0.3));
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.reveal-d1 { animation-delay: 0.12s; }
.reveal-d2 { animation-delay: 0.24s; }
.reveal-d3 { animation-delay: 0.36s; }
.reveal-d4 { animation-delay: 0.48s; }

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

.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.glass {
  background: rgba(18, 16, 26, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border);
}

.shimmer { position: relative; overflow: hidden; }
.shimmer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.2) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { transform: translateX(-130%); }
  55% { transform: translateX(130%); }
}

.shimmer-border { position: relative; }
.shimmer-border::before {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--indigo), var(--purple), var(--pink), var(--indigo));
  background-size: 300% 300%;
  animation: borderGlow 5s linear infinite;
  opacity: 0.5;
}
@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav {
  max-width: 1140px; margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; gap: 16px;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 14, 0.75);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 17px; text-decoration: none; color: var(--ink); margin-right: auto;
  letter-spacing: -0.02em;
}
.brand-accent {
  background: linear-gradient(135deg, var(--indigo), var(--pink-soft));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-icon {
  width: 38px; height: 38px; border-radius: 12px;
  box-shadow: 0 4px 28px var(--glow-indigo);
  animation: iconPulse 3.5s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 4px 24px var(--glow-indigo); transform: scale(1); }
  50% { box-shadow: 0 6px 36px rgba(180, 180, 192, 0.45); transform: scale(1.04); }
}

.nav nav { display: flex; gap: 22px; flex-wrap: wrap; }
.nav nav a {
  color: var(--ink-muted); text-decoration: none; font-weight: 700; font-size: 14px;
  transition: color 0.25s, transform 0.25s;
  position: relative;
}
.nav nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--pink));
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav nav a:hover { color: var(--ink); transform: translateY(-1px); }
.nav nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo), var(--purple), var(--pink));
  background-size: 200% auto;
  color: white; font-weight: 800; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 12px 40px var(--glow-indigo);
  transition: transform 0.25s, filter 0.25s, background-position 0.4s;
  animation: btnGradient 6s ease infinite;
}
@keyframes btnGradient {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.btn:hover { transform: translateY(-3px) scale(1.03); filter: brightness(1.1); }
.btn.ghost {
  background: rgba(255,255,255,0.04); color: var(--ink);
  box-shadow: none; border: 1px solid var(--border);
  animation: none;
}
.btn-sm { padding: 8px 16px; font-size: 13px; border-radius: 10px; }
.btn-icon {
  display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(255,255,255,0.18); font-size: 12px;
}

main { max-width: 1140px; margin: 0 auto; padding: 20px; position: relative; z-index: 1; }

.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 36px; align-items: center; padding: 52px 0 44px;
  position: relative;
}

.hero-glow {
  position: absolute; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,180,192,0.18), transparent 68%);
  top: -100px; left: -120px; pointer-events: none;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.2); opacity: 1; }
}

.pill {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: rgba(160, 160, 176, 0.12); border: 1px solid rgba(180, 180, 192, 0.32);
  font-size: 13px; font-weight: 800; margin-bottom: 18px; color: #c8c8d4;
  letter-spacing: 0.06em; text-transform: lowercase;
}
.pulse-badge { animation: badgePulse 2.8s ease-in-out infinite; }
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(180, 180, 192, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(180, 180, 192, 0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.02; font-weight: 900; margin-bottom: 18px;
  letter-spacing: -0.03em;
}

.lead { font-size: 17px; color: var(--ink-muted); max-width: 52ch; margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-chips span {
  padding: 8px 14px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--ink-muted);
  transition: transform 0.25s, border-color 0.25s, color 0.25s;
}
.hero-chips span:hover {
  transform: translateY(-2px);
  border-color: var(--pink-soft);
  color: var(--ink);
}

.hero-visual { display: flex; justify-content: center; perspective: 900px; }

.hero-stack {
  position: relative; width: min(100%, 420px); height: 310px;
  border-radius: 26px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--border);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.stack-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none; z-index: 2;
}
.ring-a { width: 120%; height: 120%; top: -10%; left: -10%; animation: ringSpin 24s linear infinite; }
.ring-b { width: 140%; height: 140%; top: -20%; left: -20%; animation: ringSpin 32s linear infinite reverse; opacity: 0.5; }
@keyframes ringSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stack-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.ken-burns { animation: kenBurns 20s ease-in-out infinite alternate; }
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, -1%); }
}

.stack-shine {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 45%, transparent 100%);
  pointer-events: none; z-index: 1;
  animation: shineSweep 5s ease-in-out infinite;
}
@keyframes shineSweep {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

.stack-popup {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border-radius: 16px; z-index: 3;
}
.stack-popup strong { display: block; font-size: 14px; }
.stack-popup span { font-size: 11px; color: var(--ink-muted); }
.live-pill {
  margin-left: auto; font-size: 9px; font-weight: 900;
  background: var(--indigo); color: #0a0a0e; padding: 3px 8px; border-radius: 999px;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.95); }
}

.pop-in { animation: popIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both; }
@keyframes popIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.stack-cursor {
  position: absolute; top: 38%; left: 54%; z-index: 4;
  filter: drop-shadow(0 4px 10px rgba(255, 210, 225, 0.45));
  animation: cursorBob 2.2s ease-in-out infinite;
}
@keyframes cursorBob {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(8px, 10px) rotate(2deg); }
}

.floaty { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.tilt-card { will-change: transform; }

.social-proof { margin: 16px 0 56px; }

.proof-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  padding: 32px 36px; border-radius: 26px;
  text-align: center;
  overflow: hidden;
  background: rgba(12, 10, 16, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-inner::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 15% 30%, rgba(180, 180, 192, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 70% at 85% 60%, rgba(140, 140, 156, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(200, 200, 212, 0.08), transparent 55%);
  animation: proofMesh 14s ease-in-out infinite alternate;
}

.proof-inner::after {
  content: '';
  position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(180, 180, 192, 0.2),
    rgba(140, 140, 156, 0.14),
    rgba(200, 200, 212, 0.12),
    rgba(120, 120, 136, 0.16)
  );
  background-size: 300% 300%;
  animation: proofBorderFlow 10s ease infinite;
  opacity: 0.45;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

@keyframes proofMesh {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

@keyframes proofBorderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.proof-headline {
  position: relative; z-index: 1;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800; max-width: 38ch; line-height: 1.4;
  background: linear-gradient(
    120deg,
    #e8e8ec 0%,
    #d8d8e0 25%,
    #ececf0 50%,
    #c8c8d4 75%,
    #e8e8ec 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: proofTextShimmer 9s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(180, 180, 192, 0.12));
}

@keyframes proofTextShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.proof-tags {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}

.proof-tags span, .tag-float {
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  background: rgba(14, 11, 20, 0.72);
  border: 1px solid rgba(180, 180, 192, 0.18);
  color: #b8b8c4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.35s, color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.tag-float {
  animation: tagFloat 4s ease-in-out infinite alternate, tagHue 12s ease-in-out infinite;
  animation-delay: var(--d, 0s), var(--d, 0s);
}

.proof-tags span:nth-child(1) { --tag-a: rgba(180, 180, 192, 0.18); --tag-b: rgba(140, 140, 156, 0.14); }
.proof-tags span:nth-child(2) { --tag-a: rgba(160, 160, 176, 0.18); --tag-b: rgba(200, 200, 212, 0.12); }
.proof-tags span:nth-child(3) { --tag-a: rgba(120, 120, 136, 0.16); --tag-b: rgba(180, 180, 192, 0.14); }
.proof-tags span:nth-child(4) { --tag-a: rgba(200, 200, 212, 0.14); --tag-b: rgba(140, 140, 156, 0.16); }
.proof-tags span:nth-child(5) { --tag-a: rgba(160, 160, 176, 0.14); --tag-b: rgba(200, 200, 212, 0.12); }

.proof-tags span:hover, .tag-float:hover {
  transform: translateY(-3px);
  color: #ececf0;
  border-color: rgba(200, 200, 212, 0.35);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, var(--tag-a, rgba(180,180,192,0.12)), var(--tag-b, rgba(140,140,156,0.1)));
}

@keyframes tagFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

@keyframes tagHue {
  0%, 100% { border-color: rgba(180, 180, 192, 0.16); }
  33% { border-color: rgba(160, 160, 176, 0.22); }
  66% { border-color: rgba(200, 200, 212, 0.18); }
}

.gallery { padding: 24px 0 52px; }
.gallery h2, .extension-showcase h2, .install h2, .reviews h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 900;
  text-align: center; margin-bottom: 10px; letter-spacing: -0.02em;
}
.section-lead {
  text-align: center; max-width: 560px; margin: 0 auto 36px; color: var(--ink-muted);
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}

.theme-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.35s;
  position: relative;
  transform-style: preserve-3d;
}
.theme-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  border-color: rgba(200, 200, 212, 0.35);
}

.theme-card .preview {
  height: 118px; background-size: cover; background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-card:hover .preview { transform: scale(1.1); }

.theme-card h4 { padding: 10px 12px 4px; font-size: 13px; font-weight: 800; }
.theme-tag {
  display: inline-block; margin: 0 12px 12px; font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 999px;
  background: rgba(160, 160, 176, 0.14); color: #c8c8d4;
}

.extension-showcase { padding: 36px 0 52px; }
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.showcase-panel {
  border-radius: 22px; padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.showcase-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.showcase-panel h3 { font-size: 17px; margin-bottom: 8px; }
.mini-desc { font-size: 13px; color: var(--ink-muted); margin-bottom: 16px; }

.cursor-grid-mini {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.cursor-grid-mini img {
  width: 48px; height: 48px; margin: 0 auto;
  filter: drop-shadow(0 4px 14px var(--glow));
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: cursorWiggle 3s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.15s);
}
.cursor-grid-mini img:hover { transform: scale(1.2) translateY(-6px) rotate(4deg); animation-play-state: paused; }
@keyframes cursorWiggle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.mine-demo { display: grid; gap: 12px; }
.mine-tab-demo { display: flex; gap: 6px; flex-wrap: wrap; }
.mine-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mine-card {
  padding: 14px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  font-size: 12px; font-weight: 700; color: var(--ink-muted);
  animation: mineCardPulse 3s ease-in-out infinite;
}
.mine-card:nth-child(2) { animation-delay: 0.5s; }
@keyframes mineCardPulse {
  0%, 100% { border-color: var(--border); }
  50% { border-color: rgba(200, 200, 212, 0.4); }
}

.chip-demo {
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 800;
  border: 1px solid var(--border); color: var(--ink-muted);
}
.chip-demo.active {
  background: linear-gradient(135deg, var(--indigo), var(--pink)); color: white; border: none;
}

.reviews { padding: 24px 0 52px; overflow: hidden; }
.marquee-wrap {
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee { display: flex; width: max-content; animation: marqueeScroll 42s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; gap: 16px; padding: 8px 8px 8px 0; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  flex: 0 0 300px; padding: 22px; border-radius: 20px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.3s, border-color 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 180, 192, 0.35);
}
.review-card .stars { color: #d0d0d8; font-size: 14px; margin-bottom: 10px; }
.review-card p { font-size: 14px; margin-bottom: 10px; }
.review-card .author { font-size: 12px; font-weight: 800; color: var(--pink-soft); }

.install { padding: 24px 0 56px; }
.download-banner {
  max-width: 720px; margin: 0 auto 24px; padding: 22px 24px; border-radius: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.download-banner h3 { font-size: 18px; font-weight: 900; margin-bottom: 4px; }
.download-banner p { font-size: 14px; color: var(--ink-muted); }

.install ol {
  max-width: 720px; margin: 0 auto; padding-left: 20px;
  display: grid; gap: 10px;
}
.install li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 14px; color: var(--ink-muted);
  transition: transform 0.25s, border-color 0.25s;
}
.install li:hover { transform: translateX(4px); border-color: var(--pink-soft); }
.install code {
  background: rgba(160,160,176,0.14); padding: 2px 6px; border-radius: 6px;
  font-size: 13px; color: #c8c8d4;
}
.install a { color: var(--pink-soft); font-weight: 700; }

.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.9); backdrop-filter: blur(12px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox.hidden { display: none; }
.lightbox img {
  max-width: min(96vw, 1100px); max-height: 78vh;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  animation: lightboxPop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes lightboxPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.lightbox p { margin-top: 14px; font-weight: 800; color: var(--pink-soft); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: var(--card); border: 1px solid var(--border); color: var(--ink);
  width: 40px; height: 40px; border-radius: 12px; font-size: 18px; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.lightbox-close:hover { transform: scale(1.08); background: rgba(255,255,255,0.08); }

.footer {
  text-align: center; padding: 36px 20px 52px; font-size: 12px;
  color: var(--ink-muted); border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.3); position: relative; z-index: 1;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-row { grid-template-columns: 1fr; }
  .nav nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee, .floaty, .mesh-bg, .ken-burns, .shimmer::after,
  .shimmer-border::before, .pulse-badge, .brand-icon, .sparkle-field span,
  .orb-field span, .tag-float, .cursor-grid-mini img, .mine-card,
  .reveal, .gradient-text, .stack-ring, .live-pill,
  .proof-inner::before, .proof-inner::after, .proof-headline, .tag-float { animation: none; }
  .fade-in, .reveal { opacity: 1; transform: none; }
}
