/* rblxplugin – Website-Stil (dunkel, Grün wie die Plugins) */
:root {
  --bg: #050a07;
  --bg2: #08100b;
  --surface: #0c1610;
  --surface2: #111e17;
  --surface3: #172a20;
  --line: #19281f;
  --line2: #25402f;
  --text: #ecf7ef;
  --muted: #94ac9d;
  --faint: #5e7a69;
  --g1: #22c55e;
  --g2: #4ade80;
  --g3: #16a34a;
  --glow: rgba(34, 197, 94, 0.38);
  --soft: rgba(34, 197, 94, 0.1);
  --warn: #fbbf24;
  --radius: 20px;
  --max: 1180px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Roboto Mono", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--sans);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(1000px 560px at 50% -160px, rgba(34, 197, 94, 0.2), transparent 70%),
    radial-gradient(700px 480px at 105% 35%, rgba(34, 197, 94, 0.06), transparent 70%),
    radial-gradient(700px 480px at -5% 70%, rgba(34, 197, 94, 0.05), transparent 70%),
    linear-gradient(var(--bg), var(--bg2));
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.35;
  background: linear-gradient(rgba(74, 222, 128, 0.05) 1px, transparent 1px) 0 0/48px 48px,
    linear-gradient(90deg, rgba(74, 222, 128, 0.05) 1px, transparent 1px) 0 0/48px 48px;
  -webkit-mask: radial-gradient(900px 600px at 50% 0%, #000, transparent 75%);
  mask: radial-gradient(900px 600px at 50% 0%, #000, transparent 75%);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--g2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.4rem); font-weight: 850; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.14rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
code, .mono { font-family: var(--mono); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.grad {
  background: linear-gradient(92deg, #a7f7c4, var(--g2) 35%, var(--g1) 65%, #10b35a, #a7f7c4);
  background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.muted { color: var(--muted); }
:focus-visible { outline: 2px solid var(--g2); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(74, 222, 128, 0.3); }

/* ---------- Einblenden beim Scrollen ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---------- Kopf ---------- */
.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s; }
.site-header.scrolled, .site-header.open {
  background: rgba(5, 10, 7, 0.78); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: rgba(37, 64, 47, 0.6);
}
.nav { display: flex; align-items: center; gap: 28px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.14rem; color: var(--text); letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand b { color: var(--g2); font-weight: 800; }
.brand svg { filter: drop-shadow(0 0 12px var(--glow)); transition: transform 0.4s var(--ease); }
.brand:hover svg { transform: rotate(-8deg) scale(1.06); }
.nav-links { display: flex; gap: 4px; margin-left: 8px; }
.nav-links a { color: var(--muted); padding: 8px 13px; border-radius: 10px; font-size: 0.94rem; font-weight: 500; transition: color 0.2s, background 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface2); text-decoration: none; }
.nav-cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.menu-btn { display: none; margin-left: auto; background: var(--surface2); border: 1px solid var(--line2); color: var(--text); border-radius: 10px; padding: 8px 10px; cursor: pointer; }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: block; }
  .site-header.open .nav { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .site-header.open .nav-links { display: flex; flex-direction: column; width: 100%; order: 3; margin: 6px 0 0; }
  .site-header.open .nav-cta { display: flex; width: 100%; order: 4; margin: 8px 0 4px; }
  .site-header.open .nav-cta .btn { flex: 1; justify-content: center; }
}

/* ---------- Knöpfe, Chips ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: 9px; border-radius: 13px; padding: 13px 22px;
  font: 700 0.96rem/1 var(--sans); cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.15s var(--ease), box-shadow 0.25s, background 0.2s, border-color 0.2s, filter 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: linear-gradient(180deg, #3ae07c, var(--g3)); color: #03170b; box-shadow: 0 10px 30px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-primary::after { content: ""; position: absolute; z-index: -1; top: -60%; bottom: -60%; width: 36px; left: 0; background: rgba(255, 255, 255, 0.5);
  transform: translateX(-70px) rotate(20deg); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 16px 40px -10px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
.btn-primary:hover::after { transform: translateX(340px) rotate(20deg); transition: transform 0.65s var(--ease); }
.btn-ghost { background: rgba(17, 30, 23, 0.8); color: var(--text); border-color: var(--line2); }
.btn-ghost:hover { background: var(--surface3); border-color: #3a5c45; }
.btn-sm { padding: 10px 15px; font-size: 0.88rem; border-radius: 11px; }
.btn.is-disabled, .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; filter: grayscale(0.3); transform: none; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--g2); padding: 7px 13px; border-radius: 999px; background: var(--soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--g2); box-shadow: 0 0 10px var(--g2); animation: dotPulse 1.8s ease-in-out infinite; }
@keyframes dotPulse { 50% { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.15), 0 0 12px var(--g2); } }
.tag { font-family: var(--mono); font-size: 0.82em; color: var(--g2); background: var(--soft); border: 1px solid rgba(74, 222, 128, 0.22); padding: 2px 8px; border-radius: 7px; white-space: nowrap; }
.pill { display: inline-block; font-size: 0.74rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--surface3); color: var(--muted); border: 1px solid var(--line2); }
.pill.green { color: var(--g2); background: var(--soft); border-color: rgba(74, 222, 128, 0.35); }
.pill.warn { color: var(--warn); background: rgba(251, 191, 36, 0.08); border-color: rgba(251, 191, 36, 0.3); }

/* ---------- Abschnitte ---------- */
.section { padding: 110px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: 16px; }
.section-head .eyebrow { margin-bottom: 20px; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line2), transparent); }

/* ---------- Hero ---------- */
.hero { padding: 90px 0 40px; text-align: center; }
.hero .lead { max-width: 690px; margin: 24px auto 0; color: var(--muted); font-size: clamp(1.06rem, 1.8vw, 1.24rem); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-note { margin-top: 18px; color: var(--faint); font-size: 0.88rem; }
.hero .eyebrow { margin-bottom: 28px; animation: rise 0.9s var(--ease) both; }
.hero h1 { animation: rise 0.9s var(--ease) both; }
.hero .lead { animation: rise 0.9s 0.1s var(--ease) both; }
.hero .hero-actions { animation: rise 0.9s 0.2s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Vorschau Figma → Code → Studio ---------- */
.showcase { margin-top: 58px; display: grid; gap: 20px; text-align: left; animation: rise 1s 0.3s var(--ease) both; }
.window { background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--line2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(74, 222, 128, 0.06); }
.window-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 0.8rem; color: var(--muted); }
.window-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2b3c32; display: block; opacity: 0.85; }
.window-bar i:nth-child(1) { background: #ff5f57; } .window-bar i:nth-child(2) { background: #febc2e; } .window-bar i:nth-child(3) { background: #28c840; }
.window-bar span { margin-left: 8px; font-weight: 600; }
.window-bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--g2); font-size: 0.74rem; }
.window-bar .live i { width: 7px; height: 7px; background: var(--g2); opacity: 1; animation: dotPulse 1.6s infinite; }
.window-body { padding: 14px; }

/* Live-Simulator: Nachbau der Plugin-Oberflaeche */
.sim { position: relative; background: linear-gradient(180deg, #0d1812, #0a120d); border: 1px solid var(--line2); border-radius: 18px; overflow: hidden;
  box-shadow: 0 50px 110px -40px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(74, 222, 128, 0.07); }
.sim-bar { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--line); background: rgba(8, 16, 11, 0.7); }
.sim-brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.92rem; }
.sim-brand svg { width: 20px; height: 20px; filter: drop-shadow(0 0 10px var(--glow)); }
.sim-brand b { color: var(--g2); }
.sim-pill { display: inline-flex; align-items: center; gap: 7px; font: 600 0.76rem/1 var(--mono); color: var(--muted); background: var(--surface2); border: 1px solid var(--line2); border-radius: 999px; padding: 6px 12px; }
.sim-pill svg { width: 12px; height: 12px; }
.sim-conn { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; color: var(--muted); }
.sim-conn i { width: 7px; height: 7px; border-radius: 50%; background: var(--g2); box-shadow: 0 0 8px var(--g2); animation: dotPulse 1.8s infinite; }
.sim-tools { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.sb { display: inline-flex; align-items: center; gap: 6px; font: 700 0.78rem/1 var(--sans); border-radius: 9px; padding: 8px 11px; border: 1px solid var(--line2); background: var(--surface2); color: var(--text); white-space: nowrap; }
.sb svg { width: 13px; height: 13px; }
.sb.primary { background: linear-gradient(180deg, #3ae07c, var(--g3)); color: #03170b; border-color: transparent; box-shadow: 0 8px 20px -10px var(--glow); }
.sb.accent { background: var(--soft); color: var(--g2); border-color: rgba(74, 222, 128, 0.4); }
.sb.ghost { color: var(--muted); font-weight: 600; }
button.sb { cursor: pointer; transition: color 0.2s, border-color 0.2s; }
button.sb:hover { color: var(--text); border-color: #3a5c45; }
.sb.sel::after { content: "\25be"; margin-left: 4px; opacity: 0.6; }
.sim-sep { width: 1px; height: 20px; background: var(--line2); }
.sim-grow { flex: 1; }
.sim-tgl { display: inline-flex; align-items: center; gap: 7px; font-size: 0.72rem; color: var(--muted); }
.sim-tgl::before { content: ""; width: 24px; height: 14px; border-radius: 999px; background: radial-gradient(circle 5px at 7px 50%, #6b8377 98%, transparent), var(--surface3); border: 1px solid var(--line2); }
.sim-tgl.on::before { background: radial-gradient(circle 5px at 17px 50%, #04210f 98%, transparent), var(--g3); border-color: var(--g1); }
@media (max-width: 860px) { .sim-tgl, .sim-sep, .sb.sel { display: none; } }

.sim-view { position: relative; height: clamp(320px, 40vw, 440px); overflow: hidden; background: #060b08; touch-action: pan-y; cursor: grab; isolation: isolate; }
.sim-view.grab { cursor: grabbing; }
.sim-view::after { content: ""; position: absolute; inset: 0; z-index: 6; pointer-events: none; background: radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(3, 9, 6, 0.75) 100%); }
.sim-bg { position: absolute; inset: -12px; background: url(/assets/gfx/map.webp) center/cover; filter: saturate(1.1) brightness(0.6); }
.sim-burst { position: absolute; left: 50%; top: 50%; width: 820px; height: 820px; margin: -410px 0 0 -410px; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 244, 196, 0.9), rgba(255, 244, 196, 0.18) 62%);
  -webkit-mask: url(/assets/gfx/sunburst.png) center/contain no-repeat; mask: url(/assets/gfx/sunburst.png) center/contain no-repeat;
  opacity: 0.3; will-change: transform; animation: spin 60s linear infinite; }
.sim-stars { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.twinkle { position: absolute; background: #fff; -webkit-mask: url(/assets/gfx/star.png) center/contain no-repeat; mask: url(/assets/gfx/star.png) center/contain no-repeat;
  animation: twinkle 3.4s ease-in-out infinite; opacity: 0; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(0.3) rotate(0deg); } 50% { opacity: 0.95; transform: scale(1) rotate(60deg); } }
.sim-stage { position: absolute; left: 0; top: 0; width: 650px; height: 526px; z-index: 3; transform-origin: 0 0; will-change: transform; }
.root-in { position: relative; width: 650px; height: 526px; transform-origin: 50% 50%; will-change: transform; }
.sim-shop { width: 650px; height: 526px; filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.55)); }
.hs { position: absolute; }
.hs-in { position: absolute; inset: 0; transform-origin: 50% 50%; will-change: transform; }
.hs-in > img { width: 100%; height: 100%; }
.hs .shine { position: absolute; inset: 0; opacity: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 42%, rgba(255, 255, 255, 0.85) 50%, transparent 58%); background-size: 300% 100%; background-repeat: no-repeat;
  -webkit-mask: var(--art) center/contain no-repeat; mask: var(--art) center/contain no-repeat; }
.hs-tag { position: absolute; left: 50%; top: -26px; translate: -50% 0; font: 600 13px/1 var(--mono); color: #04210f; background: var(--g2); padding: 5px 8px; border-radius: 6px;
  white-space: nowrap; opacity: 0; transition: opacity 0.15s; pointer-events: none; }
.hs.hov .hs-tag, .hs.sel .hs-tag { opacity: 1; }
.hs.sel .hs-in::after { content: ""; position: absolute; inset: -5px; border: 2px solid var(--g2); border-radius: 5px; box-shadow: 0 0 0 1px rgba(3, 9, 6, 0.5); }
.sim-hud { position: absolute; left: 12px; top: 12px; z-index: 7; pointer-events: none; font: 600 0.7rem/1 var(--sans); color: var(--muted);
  background: rgba(5, 10, 7, 0.75); border: 1px solid var(--line2); border-radius: 9px; padding: 7px 10px; backdrop-filter: blur(6px); }
.sim-hud b { color: var(--g2); }
@media (max-width: 560px) { .sim-hud { display: none; } }
.sim-zoom { position: absolute; right: 12px; bottom: 12px; z-index: 7; display: flex; align-items: center; gap: 2px;
  background: rgba(5, 10, 7, 0.8); border: 1px solid var(--line2); border-radius: 10px; padding: 4px; backdrop-filter: blur(6px); }
.sim-zoom button { width: 26px; height: 26px; border: 0; background: transparent; color: var(--muted); border-radius: 7px; cursor: pointer; font-size: 0.95rem; line-height: 1; }
.sim-zoom button:hover { background: var(--surface3); color: var(--text); }
.sim-zoom span { min-width: 46px; text-align: center; font: 600 0.72rem/1 var(--mono); color: var(--text); }
.sim-zoom .fit { width: auto; padding: 0 9px; font: 600 0.72rem/1 var(--sans); }

.sim-insp { display: grid; grid-template-columns: 1.15fr 1fr; border-top: 1px solid var(--line); background: rgba(6, 12, 8, 0.6); }
@media (max-width: 760px) { .sim-insp { grid-template-columns: 1fr; } }
.insp-col { padding: 14px 16px; }
.insp-col + .insp-col { border-left: 1px solid var(--line); }
@media (max-width: 760px) { .insp-col + .insp-col { border-left: 0; border-top: 1px solid var(--line); } }
.insp-head { display: flex; align-items: baseline; gap: 9px; }
.insp-head b { font-size: 0.95rem; }
.insp-head em { font-style: normal; color: var(--g2); font: 600 0.74rem/1 var(--mono); }
.insp-head span { margin-left: auto; color: var(--faint); font: 0.72rem/1 var(--mono); }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 10px; }
.chip-lbl { flex: none; width: 64px; font-size: 0.64rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); }
.chip { font: 600 0.74rem/1 var(--mono); padding: 6px 9px; border-radius: 8px; background: var(--surface2); border: 1px solid var(--line2); color: var(--muted); cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s, transform 0.18s; }
.chip:hover { color: var(--text); border-color: #3a5c45; transform: translateY(-1px); }
.chip.on { background: var(--soft); border-color: rgba(74, 222, 128, 0.5); color: var(--g2); box-shadow: 0 0 16px -6px var(--glow); }
.insp-desc { margin-top: 13px; color: var(--faint); font-size: 0.78rem; min-height: 1.4em; }
.insp-params { display: grid; align-content: start; gap: 9px; max-height: 196px; overflow: auto; }
.pgroup { border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; background: var(--surface); }
.pgroup-h { font: 700 0.72rem/1 var(--mono); color: var(--g2); }
.prow { display: grid; grid-template-columns: 74px 1fr 50px; align-items: center; gap: 10px; margin-top: 9px; font-size: 0.74rem; color: var(--muted); }
.prow b { font: 600 0.72rem/1 var(--mono); color: var(--text); text-align: right; }
.prow input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 999px; background: var(--surface3); outline: none; cursor: pointer; }
.prow input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--g2); border: 0; box-shadow: 0 0 10px -2px var(--glow); cursor: pointer; }
.prow input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: var(--g2); cursor: pointer; }
.insp-hint { color: var(--faint); font-size: 0.78rem; }

/* Uebergabe an Studio */
.handoff { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; }
@media (max-width: 900px) { .handoff { grid-template-columns: 1fr; } }
.flow-step { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.86rem; }
.flow-step b { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--soft); color: var(--g2); font-size: 0.74rem; }
.flow { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: 0.8rem; }
.code-pill { font: 800 1.2rem/1 var(--mono); letter-spacing: 0.3em; color: var(--g2); padding: 13px 16px 13px 20px; border-radius: 12px; background: var(--soft); border: 1px solid rgba(74, 222, 128, 0.45); text-shadow: 0 0 16px var(--glow); min-width: 150px; text-align: center; box-shadow: 0 0 40px -12px var(--glow); }
.flow svg { color: var(--g1); }
/* Achtung: auf dem <path> statt auf dem <svg> loest das in jedem Bild ein
   neues Layout der ganzen Seite aus - deshalb das Element selbst bewegen. */
.flow .arrow { animation: nudge 1.6s ease-in-out infinite; will-change: transform; }
@keyframes nudge { 50% { transform: translateX(4px); } }

/* Ersatz-Shop (bis deine Figma-Grafik in /assets/art liegt) */
.shop { position: relative; width: 100%; border-radius: 14px; overflow: hidden; border: 3px solid #0b0f0d; background: linear-gradient(180deg, #e9f7ff, #bfe6ff); }
.shop-head { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: linear-gradient(180deg, #47d692, #1f9d61); border-bottom: 3px solid #0b0f0d; }
.shop-head b { font: 900 1.25rem/1 var(--sans); color: #fff; letter-spacing: 0.06em; -webkit-text-stroke: 1.2px #0b0f0d; paint-order: stroke fill; text-shadow: 0 3px 0 #0b0f0d; }
.shop-ico { width: 26px; height: 22px; border-radius: 6px; background: linear-gradient(180deg, #ff6b8a, #d7264d); border: 2px solid #0b0f0d; }
.shop-close { margin-left: auto; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font: 900 1rem/1 var(--sans); color: #fff; background: linear-gradient(180deg, #ff8a8a, #e23d3d); border: 2px solid #0b0f0d; box-shadow: 0 3px 0 #0b0f0d; }
.shop-body { padding: 12px; display: grid; gap: 10px; }
.shop-card { position: relative; overflow: hidden; display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; border: 2px solid #0b0f0d; background: linear-gradient(120deg, #c04bff, #7c3aed); color: #fff; }
.shop-card .t1 { font: 800 0.8rem/1.2 var(--mono); color: #ffe66b; -webkit-text-stroke: 0.6px #0b0f0d; paint-order: stroke fill; }
.shop-card .t2 { font: 700 0.7rem/1.2 var(--mono); color: #ff9cc7; }
.shop-card .gem { width: 40px; height: 40px; flex: none; border-radius: 10px; background: radial-gradient(circle at 35% 30%, #fff 0 12%, #a5f3fc 13% 40%, #22d3ee 41%); border: 2px solid #0b0f0d; animation: floaty 2.6s ease-in-out infinite; }
.shop-card .buy { margin-left: auto; font: 900 0.8rem/1 var(--mono); color: #fff; padding: 8px 10px; border-radius: 8px; background: linear-gradient(180deg, #5bf08d, #16a34a); border: 2px solid #0b0f0d; animation: pulse 1.1s ease-in-out infinite; }
.shop-card::after { content: ""; position: absolute; top: -40%; bottom: -40%; width: 26px; left: 0; background: rgba(255, 255, 255, 0.45);
  transform: translateX(-60px) rotate(20deg); animation: shiny 3.2s ease-in-out infinite; }

/* Explorer im Studio-Fenster */
.tree { font: 0.82rem/1.85 var(--mono); color: var(--muted); padding: 4px 4px 2px; }
.tree div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-radius: 6px; padding-right: 6px; }
.tree div:hover { background: rgba(74, 222, 128, 0.07); }
.tree .i1 { padding-left: 16px; } .tree .i2 { padding-left: 32px; } .tree .i3 { padding-left: 48px; } .tree .i4 { padding-left: 64px; }
.tree b { color: var(--text); font-weight: 600; }
.tree em { font-style: normal; color: var(--faint); font-size: 0.78em; margin-left: 6px; }
.tree .new { animation: appear 0.45s var(--ease) both; }
.tree .fx { color: var(--g2); }
@keyframes appear { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Laufband mit Tags ---------- */
.marquee-wrap { padding: 40px 0 6px; display: grid; gap: 12px; }
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee .track { display: flex; gap: 12px; width: max-content; animation: marquee 60s linear infinite; }
.marquee.rev .track { animation-direction: reverse; animation-duration: 70s; }
.marquee .tag { font-size: 0.92rem; padding: 9px 15px; border-radius: 11px; background: rgba(17, 30, 23, 0.7); border-color: var(--line2); }
.marquee:hover .track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Karten, Raster ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: border-color 0.3s, box-shadow 0.3s; }
.card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity 0.35s;
  background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(74, 222, 128, 0.09), transparent 60%); }
.card:hover { border-color: var(--line2); }
.card:hover::after { opacity: 1; }
.card p { color: var(--muted); margin-top: 10px; }
.card .icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--g2); background: var(--soft); border: 1px solid rgba(74, 222, 128, 0.25); margin-bottom: 18px; transition: transform 0.4s var(--ease); }
.card:hover .icon { transform: translateY(-3px) rotate(-6deg); }
.card.hl { border-color: rgba(74, 222, 128, 0.35); box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.1), 0 40px 80px -45px var(--glow); }
.card.hl::before { content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none; z-index: 2;
  background: conic-gradient(from var(--ang, 0deg), transparent 0 70%, var(--g2) 82%, transparent 94%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: borderSpin 6s linear infinite; }
@property --ang { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes borderSpin { to { --ang: 360deg; } }

/* Plugin-Katalog */
.product { display: grid; grid-template-columns: 1.05fr 1fr; padding: 0; }
@media (max-width: 860px) { .product { grid-template-columns: 1fr; } }
.product-info { padding: 38px; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.product-info .row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.product-info ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; color: var(--muted); }
.product-info li { display: flex; gap: 10px; align-items: flex-start; }
.product-info li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 6px; background: var(--soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.4 7.6 12 13 6.5' fill='none' stroke='%234ade80' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/18px no-repeat; }
.product-art { position: relative; min-height: 340px; display: grid; place-items: center; overflow: hidden; border-left: 1px solid var(--line);
  background: linear-gradient(rgba(5, 10, 7, 0.5), rgba(5, 10, 7, 0.7)), url(/assets/gfx/map.webp) center/cover; }
@media (max-width: 860px) { .product-art { border-left: 0; border-top: 1px solid var(--line); } }
.product-burst { position: absolute; width: 520px; height: 520px; left: 50%; top: 50%; margin: -260px 0 0 -260px; background: #fff3c4;
  -webkit-mask: url(/assets/gfx/sunburst.png) center/contain no-repeat; mask: url(/assets/gfx/sunburst.png) center/contain no-repeat; opacity: 0.22; will-change: transform; animation: spin 60s linear infinite; }
.product-shop { position: relative; width: min(340px, 80%); filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.6)); transition: transform 0.6s var(--ease); }
.card:hover .product-shop { transform: translateY(-6px) rotate(-1.5deg) scale(1.02); }
.soon-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; min-height: 170px; border-style: dashed; border-color: var(--line2); background: transparent; }

/* Schritte */
.step { padding-top: 70px; }
.step .num { position: absolute; top: 26px; left: 28px; width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; color: #03170b; background: linear-gradient(180deg, #3ae07c, var(--g3)); box-shadow: 0 8px 22px -8px var(--glow); }

/* ---------- Effekt-Kacheln ---------- */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px; }
.tile { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--surface2), var(--surface)); border: 1px solid var(--line); border-radius: 18px; padding: 18px 14px 16px; text-align: center; transition: border-color 0.25s; }
.tile::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.3s; background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(74, 222, 128, 0.1), transparent 65%); }
.tile:hover { border-color: var(--line2); }
.tile:hover::after { opacity: 1; }
.tile .stage { height: 104px; display: grid; place-items: center; position: relative; z-index: 1; }
.tile .tag { font-size: 0.8rem; position: relative; z-index: 1; }
.tile p { margin-top: 8px; color: var(--faint); font-size: 0.8rem; line-height: 1.4; }
.demo { position: relative; width: 60px; height: 60px; border-radius: 15px; overflow: hidden; background: linear-gradient(160deg, #3ee37d, #139447); border: 2px solid #0b0f0d; box-shadow: 0 5px 0 #0b0f0d; }
.demo.alt { background: linear-gradient(160deg, #ffd166, #f59e0b); }
.demo.pink { background: linear-gradient(160deg, #ff7ab8, #db2777); }
.demo.blue { background: linear-gradient(160deg, #7cc8ff, #2563eb); }
.demo.art { width: 84px; height: 84px; background: none; border: 0; box-shadow: none; border-radius: 0; overflow: visible; }
.demo.art img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.45)); pointer-events: none; }
.demo.art.fx-shiny, .demo.art.fx-glint { overflow: hidden; -webkit-mask: var(--art) center/contain no-repeat; mask: var(--art) center/contain no-repeat; }
.demo.art.fx-shiny img, .demo.art.fx-glint img { filter: none; }
.demo.burst { width: 86px; height: 86px; border: 0; box-shadow: none; border-radius: 0; background: linear-gradient(135deg, #fff2a8, #f59e0b);
  -webkit-mask: url(/assets/gfx/sunburst-small.png) center/contain no-repeat; mask: url(/assets/gfx/sunburst-small.png) center/contain no-repeat; }
.demo.rays { width: 100px; height: 100px; border: 0; box-shadow: none; background: none; border-radius: 0; overflow: visible; display: grid; place-items: center; }
.demo.rays .burst { position: absolute; inset: 0; background: linear-gradient(135deg, #fff2a8, #f59e0b); -webkit-mask: url(/assets/gfx/sunburst-small.png) center/contain no-repeat; mask: url(/assets/gfx/sunburst-small.png) center/contain no-repeat; }
.demo.rays img, .demo.rays .rays-core { position: relative; width: 58px; height: 58px; object-fit: contain; animation: pulse 2s ease-in-out infinite; filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.5)); }
.demo.rays .rays-core { border-radius: 14px; background: linear-gradient(160deg, #ffd166, #f59e0b); border: 2px solid #0b0f0d; }
.demo.drift { width: 128px; height: 66px; background: url(/assets/gfx/studs.png) 0 0/33px 33px, linear-gradient(160deg, #46e883, #139447); background-blend-mode: multiply; animation: drift 1.8s linear infinite; }
.fx-smooth { transition: transform 0.14s ease-out; cursor: pointer; }
.tile:hover .fx-smooth { transform: scale(1.1); }
.tile:active .fx-smooth { transform: scale(0.9); }
.fx-up { transition: transform 0.18s ease-out; cursor: pointer; }
.tile:hover .fx-up { transform: translateY(-9px); }
.fx-turn { transition: transform 0.22s ease-out; cursor: pointer; }
.tile:hover .fx-turn { transform: rotate(-7deg); }
.fx-squish { transition: transform 0.5s cubic-bezier(0.34, 1.9, 0.5, 1); cursor: pointer; }
.tile:active .fx-squish { transform: scale(1.16, 0.82); transition-duration: 0.08s; }
.fx-lean { transition: transform 0.25s ease-out; }
.tile:hover .fx-lean { transform: rotate(10deg); }
.fx-magnet { cursor: pointer; }
.fx-spin { animation: spin 4s linear infinite; }
.fx-float { animation: floaty 2.2s ease-in-out infinite; }
.fx-pulse { animation: pulse 1s ease-in-out infinite; }
.fx-blink { animation: blink 1.8s ease-in-out infinite; }
.fx-jelly { animation: jelly 1.4s ease-in-out infinite; }
.fx-wiggle { animation: wiggle 2.5s ease-in-out infinite; }
.fx-shake { animation: shake 2.5s linear infinite; }
.fx-pop { animation: pop 2.6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite; }
.fx-shiny::after, .fx-glint::after { content: ""; position: absolute; top: -40%; bottom: -40%; width: 16px; left: 0; background: rgba(255, 255, 255, 0.7);
  transform: translateX(-60px) rotate(20deg); will-change: transform; z-index: 2; }
.fx-shiny::after { animation: shiny 2.4s ease-in-out infinite; }
.fx-glint { cursor: pointer; }
.fx-glint.sweep::after { animation: sweep 0.65s ease-out; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { transform: translateY(6px); } 50% { transform: translateY(-6px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 45% { transform: scale(1.08); } }
@keyframes blink { 0%, 55% { opacity: 1; } 65%, 90% { opacity: 0; } 100% { opacity: 1; } }
@keyframes jelly { 0%, 100% { transform: rotate(-3deg) scale(1); } 50% { transform: rotate(3deg) scale(1.04); } }
@keyframes wiggle { 0%, 60%, 100% { transform: rotate(0); } 5% { transform: rotate(13deg); } 12% { transform: rotate(-10deg); } 20% { transform: rotate(6deg); } 28% { transform: rotate(-3deg); } 36% { transform: rotate(1deg); } }
@keyframes shake { 0%, 25%, 100% { transform: translate(0, 0); } 3% { transform: translate(-5px, 1px); } 6% { transform: translate(5px, -1px); } 9% { transform: translate(-4px, 1px); } 12% { transform: translate(3px, 0); } 15% { transform: translate(-2px, -1px); } 18% { transform: translate(1px, 0); } }
@keyframes pop { 0% { transform: scale(0.5); opacity: 0.3; } 18%, 100% { transform: scale(1); opacity: 1; } }
@keyframes drift { to { background-position: -33px 0, 0 0; } }
@keyframes shiny { 0% { transform: translateX(-60px) rotate(20deg); } 55%, 100% { transform: translateX(170px) rotate(20deg); } }
@keyframes sweep { from { transform: translateX(-60px) rotate(20deg); } to { transform: translateX(170px) rotate(20deg); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
}

/* ---------- Preise ---------- */
.pricing { align-items: stretch; }
.price-card { display: flex; flex-direction: column; gap: 18px; }
.price-card .price { font-size: 2.5rem; font-weight: 850; letter-spacing: -0.03em; }
.price-card .price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); margin-left: 6px; letter-spacing: 0; }
.price-card .price.soon { font-size: 1.5rem; color: var(--muted); }
.price-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; color: var(--muted); font-size: 0.95rem; }
.price-card li { display: flex; gap: 10px; }
.price-card li::before { content: "✓"; color: var(--g2); font-weight: 800; }
.price-card .btn { justify-content: center; margin-top: auto; }
.price-card .head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pay-note { margin-top: 24px; color: var(--faint); font-size: 0.86rem; text-align: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 4px 22px; transition: border-color 0.25s, background 0.25s; }
.faq details:hover { border-color: var(--line2); }
.faq details[open] { border-color: var(--line2); background: var(--surface2); }
.faq summary { cursor: pointer; list-style: none; padding: 17px 0; font-weight: 700; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--g2); font-weight: 800; font-size: 1.3rem; line-height: 1; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 18px; animation: rise 0.4s var(--ease) both; }

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; padding: 76px 28px; border-radius: 28px; border: 1px solid rgba(74, 222, 128, 0.3);
  background: radial-gradient(560px 260px at 50% 0%, rgba(34, 197, 94, 0.28), transparent 70%), linear-gradient(180deg, var(--surface2), var(--surface)); isolation: isolate; }
.cta-band::before { content: ""; position: absolute; width: 900px; height: 900px; left: 50%; top: 50%; margin: -450px 0 0 -450px; z-index: -1; background: var(--g2); opacity: 0.08;
  -webkit-mask: url(/assets/gfx/sunburst.png) center/contain no-repeat; mask: url(/assets/gfx/sunburst.png) center/contain no-repeat; animation: spin 80s linear infinite; }
.cta-band p { color: var(--muted); max-width: 560px; margin: 16px auto 0; }
.cta-band .hero-actions { margin-top: 30px; }

/* ---------- Doku / Rechtstexte ---------- */
.page-head { padding: 76px 0 30px; }
.page-head h1 { animation: rise 0.8s var(--ease) both; }
.page-head p { color: var(--muted); margin-top: 14px; max-width: 700px; font-size: 1.08rem; }
.docs { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-bottom: 96px; }
@media (max-width: 860px) { .docs { grid-template-columns: 1fr; } .toc { display: none; } }
.toc { position: sticky; top: 92px; align-self: start; display: grid; gap: 2px; font-size: 0.92rem; }
.toc a { color: var(--muted); padding: 6px 10px; border-radius: 8px; }
.toc a:hover { color: var(--text); background: var(--surface2); text-decoration: none; }
.prose { max-width: 780px; }
.prose h2 { font-size: 1.7rem; margin: 52px 0 14px; scroll-margin-top: 92px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 10px; }
.prose p, .prose li { color: var(--muted); }
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin: 6px 0; }
.prose strong { color: var(--text); }
.prose .note { border: 1px solid var(--line2); background: var(--surface); border-radius: 12px; padding: 14px 16px; margin: 0 0 18px; color: var(--muted); }
.table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; font-size: 0.93rem; }
.table th, .table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { color: var(--faint); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.table td { color: var(--muted); }
.table td:first-child { white-space: nowrap; }
.table tbody tr { transition: background 0.2s; }
.table tbody tr:hover { background: rgba(74, 222, 128, 0.04); }
.table-wrap { overflow-x: auto; }

/* ---------- Fuß ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 52px 0 36px; margin-top: 40px; color: var(--faint); font-size: 0.9rem; }
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
@media (max-width: 760px) { .foot { grid-template-columns: 1fr 1fr; } }
.foot h4 { color: var(--text); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 0; }
.foot a { display: block; color: var(--muted); padding: 3px 0; }
.foot a.brand { display: inline-flex; color: var(--text); padding: 0; }
.foot p { margin-top: 12px; max-width: 300px; }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.82rem; }
.credits { margin-top: 12px; font-size: 0.76rem; color: #496150; }
.credits a { display: inline; padding: 0; color: #6f8d7a; }

/* ---------- Texturen aus ui-resources.com (als Maske eingefaerbt) ---------- */
.hero { position: relative; }
.hero > .container { position: relative; z-index: 1; }
.hero::before {
  content: ""; position: absolute; left: 50%; top: -80px; width: min(1240px, 140%); aspect-ratio: 1; translate: -50% 0; pointer-events: none;
  background: var(--g2); opacity: 0.05;
  -webkit-mask-image: url(/assets/gfx/halftone.png), radial-gradient(58% 55% at 50% 42%, #000, transparent 72%);
  mask-image: url(/assets/gfx/halftone.png), radial-gradient(58% 55% at 50% 42%, #000, transparent 72%);
  -webkit-mask-size: contain, 100% 100%; mask-size: contain, 100% 100%;
  -webkit-mask-position: center, center; mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat; mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: source-in; mask-composite: intersect;
}
.marquee-wrap { position: relative; }
.marquee-wrap::before {
  content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 190px; pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--g1) 70%); opacity: 0.22;
  -webkit-mask: url(/assets/gfx/starfield.png) center/100% 100% no-repeat; mask: url(/assets/gfx/starfield.png) center/100% 100% no-repeat;
}
.marquee-wrap .marquee { position: relative; }
.section-head { position: relative; }
.section-head > * { position: relative; z-index: 1; }
.section-head::before {
  content: ""; position: absolute; left: 50%; top: -70px; width: 620px; height: 350px; translate: -50% 0; pointer-events: none;
  background: var(--g2); opacity: 0.07;
  -webkit-mask: url(/assets/gfx/brush.png) center/contain no-repeat; mask: url(/assets/gfx/brush.png) center/contain no-repeat;
}
.tile::before {
  content: ""; position: absolute; right: -8px; top: -8px; width: 118px; height: 118px; pointer-events: none; z-index: 0;
  background: var(--g2); opacity: 0.09; transform: scale(-1); transition: opacity 0.35s;
  -webkit-mask: url(/assets/gfx/corner.png) center/contain no-repeat; mask: url(/assets/gfx/corner.png) center/contain no-repeat;
}
.tile:hover::before { opacity: 0.2; }
.product-art::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.14; background: #eafff1;
  -webkit-mask: url(/assets/gfx/squares.png) center/cover no-repeat; mask: url(/assets/gfx/squares.png) center/cover no-repeat;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: linear-gradient(100deg, var(--g2), transparent 65%);
  -webkit-mask: url(/assets/gfx/rays.webp) center/cover no-repeat; mask: url(/assets/gfx/rays.webp) center/cover no-repeat;
}
.cta-band > * { position: relative; z-index: 1; }
.sim-view::before {
  content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none; opacity: 0.08; background: #e7fff0;
  -webkit-mask: url(/assets/gfx/dots.png) center/cover no-repeat; mask: url(/assets/gfx/dots.png) center/cover no-repeat;
}

/* ---------- Demo-Zeiger im Simulator ---------- */
.sim-cursor { position: absolute; left: 0; top: 0; z-index: 8; width: 16px; height: 20px; pointer-events: none; opacity: 0;
  transition: opacity 0.35s; filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.75)); }
.sim-cursor.show { opacity: 1; }
.sim-cursor svg { width: 100%; height: 100%; transition: scale 0.12s var(--ease); }
.sim-cursor.press svg { scale: 0.8; }
.sim-cursor::before { content: ""; position: absolute; left: -9px; top: -9px; width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.45), transparent 70%); opacity: 0; transition: opacity 0.15s; }
.sim-cursor.press::before { opacity: 1; }
.sim-hud.demo b { color: #ffd166; }
.chip.flash { animation: chipFlash 0.75s var(--ease); }
@keyframes chipFlash {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  100% { box-shadow: 0 0 0 12px rgba(74, 222, 128, 0); }
}

/* ---------- Was nicht zu sehen ist, animiert auch nicht ---------- */
.js .off, .js .off *, .js .off *::before, .js .off *::after { animation-play-state: paused !important; }

/* Sparmodus, wenn der Rechner nicht mitkommt */
.sim.lite .sim-burst, .sim.lite .twinkle, .sim.lite .sim-conn i { animation: none !important; }
.sim.lite .sim-stars { display: none; }
.sim.lite .sim-hud, .sim.lite .sim-zoom { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(5, 10, 7, 0.92); }
