:root {
  --bg: #000;
  --panel: #050505;
  --panel2: #0a0a0a;
  --red: #d00000;
  --hot: #ff0000;
  --deep: #520000;
  --text: #eee9e4;
  --dim: #8a8a8a;
  --grid: #1a1a1a;
  --module-accent: #7cff00;
  color-scheme: dark;
}

@property --orb-x {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 82%;
}

@property --orb-y {
  syntax: "<percentage>";
  inherits: true;
  initial-value: 18%;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--module-accent), transparent 86%), transparent 34%),
    linear-gradient(180deg, #020202 0%, #000 560px, #030303 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.92));
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.color-logo {
  transition: background-color .8s ease, filter .8s ease, opacity .8s ease;
  background: var(--module-accent);
  filter: drop-shadow(0 0 14px var(--module-accent)) drop-shadow(0 0 34px color-mix(in srgb, var(--module-accent), transparent 62%));
}

.logo-mask {
  display: block;
  width: 100%;
  min-height: 20px;
  aspect-ratio: 1850 / 171;
  -webkit-mask: url("sculp logo.png") center / contain no-repeat;
  mask: url("sculp logo.png") center / contain no-repeat;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 58px);
  border-bottom: 1px solid #181818;
  background: rgba(0,0,0,.96);
}
.site-nav .brand-logo { width: 210px; }
.site-nav nav { display: flex; justify-content: center; gap: 34px; }
.site-nav nav a,
.nav-button,
.ghost-button {
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.nav-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
}
.nav-button {
  border: 1px solid rgba(255,0,0,.78);
  background: linear-gradient(180deg, #ff1515, #740000);
}
.ghost-button {
  border: 1px solid rgba(238,233,228,.18);
  background: #080808;
}

.hero-banner {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 104px clamp(18px, 4vw, 70px) 56px;
  overflow: hidden;
  border-bottom: 1px solid rgba(208,0,0,.32);
  background:
    linear-gradient(90deg, rgba(120,0,0,.26), transparent 52%),
    linear-gradient(180deg, rgba(0,0,0,.12), #000 94%);
}
.hero-banner::before {
  position: absolute;
  inset: 32px clamp(14px, 4vw, 58px) 32px;
  z-index: -2;
  content: "";
  border: 1px solid rgba(208,0,0,.32);
  border-radius: 10px;
  background:
    radial-gradient(circle at 20% 26%, rgba(255,0,0,.18), transparent 36%),
    linear-gradient(135deg, rgba(82,0,0,.44), rgba(0,0,0,.72) 58%, rgba(0,0,0,.95));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 40px 110px rgba(0,0,0,.62);
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, .95fr) minmax(520px, 1.05fr);
  gap: clamp(24px, 3.5vw, 64px);
  align-items: center;
  width: min(1780px, 100%);
  margin: 0 auto;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
}
.hero-logo {
  width: min(520px, 92vw);
  min-height: 48px;
  margin-bottom: 24px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.35vw, 74px);
  line-height: .9;
  font-weight: 900;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
}
p {
  margin-bottom: 0;
  color: #cfcac5;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
}
.hero-content p { max-width: 780px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-points span {
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(238,233,228,.12);
  border-radius: 5px;
  background: rgba(5,5,5,.72);
  color: rgba(238,233,228,.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-proof {
  display: grid;
  gap: 5px;
  max-width: 690px;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(255,0,0,.72);
}
.hero-proof strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-proof span {
  color: rgba(238,233,228,.72);
  font-size: 13px;
  font-weight: 700;
}

.plugin-showcase,
.preset-section,
.chain-section,
.buy-panel,
.sales-section,
.workflow-section,
.module-stack-section,
.offer-section {
  width: min(1660px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0;
  scroll-margin-top: 118px;
}
.plugin-showcase,
.chain-section {
  position: relative;
}
.plugin-showcase::before,
.chain-section::before {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), transparent 34%),
    radial-gradient(circle at 12% 18%, rgba(208,0,0,.16), transparent 34%);
  content: "";
}
.showcase-copy {
  max-width: 1040px;
  margin-bottom: 26px;
}
.showcase-copy span,
.preset-section > div > span,
.chain-section > span {
  display: block;
  margin-bottom: 14px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.showcase-copy p { max-width: 920px; }
.sales-kicker,
.workflow-section span,
.offer-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.sales-grid,
.workflow-section,
.module-stack-section,
.offer-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
}

.module-stack-section {
  display: grid;
  grid-template-columns: minmax(320px, .7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  border-top: 1px solid rgba(238,233,228,.08);
  border-bottom: 1px solid rgba(238,233,228,.08);
}

.stack-heading {
  position: sticky;
  top: 104px;
}

.stack-heading span {
  display: block;
  margin-bottom: 14px;
  color: var(--module-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.stack-heading p {
  max-width: 560px;
}

.module-stack {
  display: grid;
  gap: 10px;
}

.module-stack article {
  --stack-accent: var(--module-accent);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--stack-accent), transparent 66%);
  border-radius: 8px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--stack-accent), transparent 88%), transparent 42%),
    #050505;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.018);
}

.module-preview {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--stack-accent), transparent 54%);
  border-radius: 7px;
  background: #000;
  cursor: pointer;
  box-shadow: 0 0 22px color-mix(in srgb, var(--stack-accent), transparent 88%);
}

.module-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transform: scale(1.02);
  transition: opacity .2s ease, transform .2s ease;
}

.module-preview:hover img,
.module-preview:focus-visible img {
  opacity: 1;
  transform: scale(1.08);
}

.module-stack b {
  color: var(--stack-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-stack p {
  font-size: 14px;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
  background: rgba(0,0,0,.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.image-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-frame {
  width: min(1520px, 96vw);
  max-height: 90vh;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--modal-accent, var(--module-accent)), transparent 46%);
  border-radius: 10px;
  background:
    radial-gradient(ellipse at 78% 8%, color-mix(in srgb, var(--modal-accent, var(--module-accent)), transparent 88%), transparent 34%),
    #030303;
  box-shadow: 0 34px 110px rgba(0,0,0,.86), 0 0 42px color-mix(in srgb, var(--modal-accent, var(--module-accent)), transparent 82%);
  transform: scale(.96) translateY(12px);
  transition: transform .24s ease;
}

.image-modal.is-open .modal-frame {
  transform: scale(1) translateY(0);
}

.modal-title {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 4px 10px;
  color: var(--modal-accent, var(--module-accent));
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-frame img {
  width: 100%;
  max-height: calc(90vh - 68px);
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #000;
}

.modal-close {
  position: fixed;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  z-index: 101;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: #050505;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lead-grid {
  align-items: center;
}
.impact-list,
.offer-stack div,
.workflow-steps article {
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: linear-gradient(180deg, #080808, #030303);
}
.impact-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.impact-list b,
.offer-stack b,
.workflow-steps b {
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.impact-list span,
.offer-stack span {
  display: block;
  padding: 11px 12px;
  border: 1px solid rgba(208,0,0,.28);
  border-radius: 5px;
  background: #050505;
  color: rgba(238,233,228,.82);
  font-size: 13px;
  font-weight: 800;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.workflow-steps article {
  min-height: 150px;
  padding: 18px;
}
.workflow-steps p {
  margin-top: 12px;
  font-size: 14px;
}
.offer-section {
  align-items: center;
  border-top: 1px solid rgba(208,0,0,.28);
  border-bottom: 1px solid rgba(208,0,0,.28);
}
.offer-copy p {
  max-width: 760px;
}
.offer-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.offer-stack div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.screenshot-showcase {
  width: min(1780px, calc(100% - 28px));
}

.module-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.module-proof-grid article {
  min-height: 170px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--module-accent), transparent 72%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 0%, color-mix(in srgb, var(--module-accent), transparent 90%), transparent 36%),
    #050505;
}

.module-proof-grid b {
  display: block;
  margin-bottom: 12px;
  color: var(--module-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.module-proof-grid p {
  font-size: 14px;
}

.screenshot-showcase::before {
  background:
    radial-gradient(circle at 70% 18%, color-mix(in srgb, var(--module-accent), transparent 82%), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 38%);
}

.cinema-showcase {
  --accent: #7cff00;
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid color-mix(in srgb, var(--accent), transparent 64%);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--accent), transparent 82%), transparent 28%),
    linear-gradient(145deg, #070707, #000 62%);
  box-shadow: 0 34px 110px rgba(0,0,0,.74), inset 0 0 0 1px rgba(255,255,255,.025);
  transition: border-color .7s ease, background .7s ease;
  contain: layout;
}

.hero-cinema {
  min-width: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  contain: layout;
}

.hero-cinema::before {
  position: absolute;
  inset: -24% -16% -18%;
  z-index: -2;
  content: "";
  background:
    radial-gradient(ellipse at var(--orb-x, 78%) var(--orb-y, 18%), color-mix(in srgb, var(--accent), transparent 82%), transparent 34%),
    radial-gradient(ellipse at calc(100% - var(--orb-x, 78%)) calc(100% - var(--orb-y, 18%)), color-mix(in srgb, var(--accent), transparent 90%), transparent 30%),
    radial-gradient(ellipse at 52% 68%, color-mix(in srgb, var(--accent), transparent 92%), transparent 42%);
  filter: blur(32px);
  opacity: .42;
  transition: --orb-x 1.4s ease, --orb-y 1.4s ease, background .7s ease;
}

.hero-cinema .cinema-copy {
  position: absolute;
  left: clamp(8px, 1.5vw, 24px);
  top: clamp(8px, 1.4vw, 22px);
  bottom: auto;
  z-index: 5;
  width: min(360px, 58%);
  min-height: 0;
  padding: 12px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 52%);
  border-radius: 8px;
  background: rgba(0,0,0,.78);
  box-shadow: 0 22px 54px rgba(0,0,0,.62);
  transition: border-color .7s ease, box-shadow .7s ease;
}

.hero-cinema .cinema-copy h3 {
  margin-bottom: 0;
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1;
}

.hero-cinema .cinema-copy p {
  display: none;
}

.hero-cinema .shot-tags {
  display: none;
}

.cinema-copy {
  display: grid;
  align-content: center;
  min-height: 430px;
}

.cinema-copy > span {
  margin-bottom: 13px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-copy h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(28px, 3.1vw, 48px);
  line-height: .95;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-copy p {
  color: rgba(238,233,228,.78);
  font-size: 15px;
}

.shot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.shot-tags span {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 58%);
  border-radius: 5px;
  background: color-mix(in srgb, var(--accent), transparent 94%);
  color: var(--text);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-stage {
  min-height: clamp(520px, 49vw, 780px);
  display: grid;
  place-items: center;
  perspective: 1400px;
  overflow: visible;
  contain: layout;
}

.hero-cinema .cinema-stage {
  min-height: clamp(470px, 46vw, 760px);
}

.cinema-frame {
  position: relative;
  width: min(100%, 1120px);
  aspect-ratio: 16 / 9;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 46%);
  border-radius: 10px;
  background: #000;
  box-shadow:
    0 28px 78px rgba(0,0,0,.78),
    0 0 34px color-mix(in srgb, var(--accent), transparent 80%);
  transform-style: preserve-3d;
  animation-duration: var(--frame-duration, 8.8s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  contain: layout;
  transition: opacity .42s ease, filter .42s ease;
  will-change: transform, opacity, filter;
}

.cinema-frame::before {
  position: absolute;
  inset: -38px;
  z-index: -1;
  content: "";
  border-radius: 34px;
  background:
    radial-gradient(ellipse at var(--orb-x, 82%) var(--orb-y, 18%), color-mix(in srgb, var(--accent), transparent 76%), transparent 30%),
    radial-gradient(ellipse at 50% 95%, color-mix(in srgb, var(--accent), transparent 88%), transparent 45%);
  filter: blur(36px);
  opacity: .48;
  transition: --orb-x 1.4s ease, --orb-y 1.4s ease, background .7s ease;
}

.cinema-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 38%);
  border-radius: 10px;
  opacity: 0;
  transform-origin: center center;
  transition: opacity .55s ease;
  will-change: transform;
  animation-duration: var(--shot-duration, 7.2s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.cinema-frame img.loaded,
.cinema-frame img[src] {
  opacity: 1;
}

.focus-rail {
  position: absolute;
  inset: -30px;
  pointer-events: none;
  border-radius: 30px;
  background:
    radial-gradient(ellipse at var(--orb-x, 82%) var(--orb-y, 18%), color-mix(in srgb, var(--accent), transparent 88%), transparent 32%),
    linear-gradient(115deg, transparent, color-mix(in srgb, var(--accent), transparent 94%), transparent);
  opacity: .42;
  mix-blend-mode: screen;
  transition: --orb-x 1.4s ease, --orb-y 1.4s ease, background .7s ease;
}

.focus-rail::before,
.focus-rail::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.focus-rail::before {
  display: none;
}

.focus-rail::after {
  inset: 14px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 68%);
  border-radius: 12px;
  box-shadow:
    inset 0 0 14px color-mix(in srgb, var(--accent), transparent 90%),
    0 0 18px color-mix(in srgb, var(--accent), transparent 86%);
}

.cinema-showcase.is-swapping .cinema-copy {
  opacity: .34;
  transform: translateY(-6px);
}

.cinema-showcase.is-swapping .cinema-frame {
  opacity: .34;
  filter: blur(3px) brightness(.84);
  animation-name: transitionFlipOut;
  animation-duration: .48s;
  animation-timing-function: cubic-bezier(.7, 0, .2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.cinema-showcase.is-entering .cinema-frame {
  animation-name: transitionFlipIn;
  animation-duration: .62s;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.cinema-showcase[data-transition="left"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="left"].is-entering .cinema-frame {
  --flip-x: 0deg;
  --flip-y: -72deg;
  --flip-z: -5deg;
}

.cinema-showcase[data-transition="right"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="right"].is-entering .cinema-frame {
  --flip-x: 0deg;
  --flip-y: 72deg;
  --flip-z: 5deg;
}

.cinema-showcase[data-transition="up"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="up"].is-entering .cinema-frame {
  --flip-x: 64deg;
  --flip-y: 0deg;
  --flip-z: 3deg;
}

.cinema-showcase[data-transition="down"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="down"].is-entering .cinema-frame {
  --flip-x: -64deg;
  --flip-y: 0deg;
  --flip-z: -3deg;
}

.cinema-showcase[data-transition="spin"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="spin"].is-entering .cinema-frame {
  --flip-x: 36deg;
  --flip-y: -54deg;
  --flip-z: 14deg;
}

.cinema-showcase[data-transition="spin360-y"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="spin360-y"].is-entering .cinema-frame {
  --flip-x: 8deg;
  --flip-y: 360deg;
  --flip-z: 2deg;
}

.cinema-showcase[data-transition="spin360-x"].is-swapping .cinema-frame,
.cinema-showcase[data-transition="spin360-x"].is-entering .cinema-frame {
  --flip-x: 360deg;
  --flip-y: -10deg;
  --flip-z: -2deg;
}

.cinema-showcase[data-motion="float-a"] .cinema-frame {
  animation-name: frameFloatA;
}

.cinema-showcase[data-motion="float-b"] .cinema-frame {
  animation-name: frameFloatB;
}

.cinema-showcase[data-motion="float-c"] .cinema-frame {
  animation-name: frameFloatC;
}

.cinema-showcase[data-motion="float-d"] .cinema-frame {
  animation-name: frameFloatD;
}

.cinema-showcase[data-motion="float-a"] .cinema-frame img {
  animation-name: shotFloatA;
}

.cinema-showcase[data-motion="float-b"] .cinema-frame img {
  animation-name: shotFloatB;
}

.cinema-showcase[data-motion="float-c"] .cinema-frame img {
  animation-name: shotFloatC;
}

.cinema-showcase[data-motion="float-d"] .cinema-frame img {
  animation-name: shotFloatD;
}

.cinema-showcase.is-swapping[data-transition] .cinema-frame {
  animation-name: transitionFlipOut;
  animation-duration: .48s;
  animation-timing-function: cubic-bezier(.7, 0, .2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

.cinema-showcase.is-entering[data-transition] .cinema-frame {
  animation-name: transitionFlipIn;
  animation-duration: .62s;
  animation-timing-function: cubic-bezier(.2, .8, .2, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes frameFloatA {
  0%, 100% { transform: rotateX(10deg) rotateY(-17deg) rotateZ(-1.2deg) translate3d(0, 0, 0); }
  45% { transform: rotateX(5deg) rotateY(-5deg) rotateZ(.6deg) translate3d(-8px, -10px, 0); }
  72% { transform: rotateX(8deg) rotateY(6deg) rotateZ(1deg) translate3d(6px, -4px, 0); }
}

@keyframes frameFloatB {
  0%, 100% { transform: rotateX(7deg) rotateY(14deg) rotateZ(1deg) translate3d(4px, 0, 0); }
  40% { transform: rotateX(12deg) rotateY(3deg) rotateZ(-.7deg) translate3d(-6px, -12px, 0); }
  76% { transform: rotateX(4deg) rotateY(-10deg) rotateZ(.4deg) translate3d(8px, -6px, 0); }
}

@keyframes frameFloatC {
  0%, 100% { transform: rotateX(12deg) rotateY(-8deg) rotateZ(.8deg) translate3d(0, -4px, 0); }
  46% { transform: rotateX(4deg) rotateY(-18deg) rotateZ(-1.4deg) translate3d(-10px, 2px, 0); }
  78% { transform: rotateX(8deg) rotateY(8deg) rotateZ(.9deg) translate3d(6px, -11px, 0); }
}

@keyframes frameFloatD {
  0%, 100% { transform: rotateX(6deg) rotateY(-20deg) rotateZ(-.6deg) translate3d(3px, -2px, 0); }
  36% { transform: rotateX(11deg) rotateY(-2deg) rotateZ(1.2deg) translate3d(-8px, -10px, 0); }
  70% { transform: rotateX(5deg) rotateY(12deg) rotateZ(-.4deg) translate3d(8px, 0, 0); }
}

@keyframes shotFloatA {
  0% { transform: scale(.95) translate3d(0, 0, 0); }
  32% { transform: scale(1.05) translate3d(-3%, 1%, 0); }
  68% { transform: scale(1.08) translate3d(3%, -2%, 0); }
  100% { transform: scale(.95) translate3d(0, 0, 0); }
}

@keyframes shotFloatB {
  0% { transform: scale(.98) translate3d(-1%, 1%, 0); }
  36% { transform: scale(1.03) translate3d(2.5%, 1%, 0); }
  74% { transform: scale(1.06) translate3d(-2%, -2.2%, 0); }
  100% { transform: scale(.98) translate3d(-1%, 1%, 0); }
}

@keyframes shotFloatC {
  0% { transform: scale(.92) translate3d(0, 0, 0); }
  42% { transform: scale(1.02) translate3d(-2.5%, 1.8%, 0); }
  80% { transform: scale(.99) translate3d(2%, -2%, 0); }
  100% { transform: scale(.92) translate3d(0, 0, 0); }
}

@keyframes shotFloatD {
  0% { transform: scale(.96) translate3d(1%, -1%, 0); }
  30% { transform: scale(1.07) translate3d(1.5%, 2%, 0); }
  66% { transform: scale(1.01) translate3d(-2.2%, -1.4%, 0); }
  100% { transform: scale(.96) translate3d(1%, -1%, 0); }
}

@keyframes transitionFlipOut {
  0% { transform: rotateX(8deg) rotateY(-10deg) rotateZ(0deg) translate3d(0, 0, 0) scale(1); }
  100% { transform: rotateX(var(--flip-x, 0deg)) rotateY(var(--flip-y, -72deg)) rotateZ(var(--flip-z, -5deg)) translate3d(0, -10px, -80px) scale(.92); }
}

@keyframes transitionFlipIn {
  0% { opacity: .1; filter: blur(6px) brightness(.72); transform: rotateX(var(--flip-x, 0deg)) rotateY(var(--flip-y, -72deg)) rotateZ(var(--flip-z, -5deg)) translate3d(0, 10px, -80px) scale(.92); }
  100% { opacity: 1; filter: blur(0) brightness(1); transform: rotateX(8deg) rotateY(-10deg) rotateZ(0deg) translate3d(0, 0, 0) scale(1); }
}

.plugin-shell {
  --active-accent: var(--hot);
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(208,0,0,.32);
  border-radius: 9px;
  background: #000;
  box-shadow: 0 24px 90px rgba(0,0,0,.68);
}
.plugin-header {
  min-height: 132px;
  padding: 10px 20px;
  border: 1px solid #181818;
  border-radius: 8px;
  background: #030405;
}
.preset-zone {
  display: grid;
  grid-template-columns: 64px 335px 52px 52px 82px 82px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  margin-bottom: 8px;
}
.preset-zone > span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.preset-box,
.preset-zone button {
  min-height: 30px;
  border: 1px solid rgba(208,0,0,.7);
  border-radius: 6px;
  background: #080808;
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.preset-box {
  display: flex;
  align-items: center;
  padding: 0 14px;
}
.macro-strip {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  min-height: 76px;
  padding: 6px 0;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: #050505;
}
.macro {
  position: relative;
  min-width: 0;
  border: 0;
  border-right: 1px solid #202020;
  background: transparent;
  color: var(--text);
  font: inherit;
  cursor: pointer;
}
.macro:last-child { border-right: 0; }
.macro::before {
  position: absolute;
  inset: 1px 4px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--accent), transparent 94%);
  content: "";
}
.macro.active::after {
  position: absolute;
  inset: -2px 3px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 35%);
  border-radius: 5px;
  content: "";
}
.macro strong,
.macro span {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}
.macro strong {
  padding: 5px 5px 0;
  overflow: hidden;
  color: color-mix(in srgb, var(--text), transparent 4%);
  font-size: 8.5px;
  font-weight: 900;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.macro i {
  position: relative;
  z-index: 1;
  display: block;
  height: 28px;
  margin: 2px 7px 0;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 68%);
  border-radius: 4px;
  background:
    #050505;
  overflow: hidden;
}
.macro svg {
  width: 100%;
  height: 100%;
}
.macro path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .95;
}
.macro span {
  color: color-mix(in srgb, var(--text), transparent 5%);
  font-size: 9.5px;
}
.macro em {
  position: absolute;
  left: 50%;
  bottom: 3px;
  z-index: 2;
  width: 28px;
  height: 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent), transparent 62%);
  transform: translateX(-50%);
}
.macro em::after {
  position: absolute;
  right: 2px;
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.plugin-body {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) 148px;
  gap: 16px;
  padding-top: 12px;
}
.side-meter {
  position: relative;
  min-height: 610px;
  padding: 20px 14px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: #050505;
  text-align: center;
}
.side-meter h3 {
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
.meter-pair {
  display: grid;
  grid-template-columns: 22px 22px;
  justify-content: center;
  gap: 8px;
  height: 300px;
  margin-bottom: 12px;
}
.meter-pair i {
  align-self: end;
  height: var(--level);
  border-radius: 2px;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.22) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #ffeded, var(--hot) 35%, #460000);
}
.db-scale {
  position: absolute;
  top: 80px;
  right: 14px;
  height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--dim);
  font-size: 11px;
}
.side-meter b,
.side-meter strong {
  display: grid;
  place-items: center;
  min-height: 32px;
  margin: 10px;
  border: 1px solid rgba(255,0,0,.55);
  border-radius: 4px;
  background: #040506;
  font-size: 13px;
}
.side-meter small {
  display: block;
  margin-top: 16px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.center-stack {
  display: grid;
  grid-template-rows: 360px minmax(226px, auto);
  gap: 8px;
}
.analyzer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  background: linear-gradient(135deg, #090909, #000);
}
.module-readout {
  position: absolute;
  top: 13px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 28px);
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--active-accent), transparent 54%);
  border-radius: 5px;
  background: rgba(0, 0, 0, .74);
}
.module-readout b {
  color: var(--active-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.module-readout span {
  overflow: hidden;
  color: rgba(238,233,228,.72);
  font-size: 11px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.module-visual {
  position: absolute;
  inset: 72px 22px 18px;
}
.module-visual svg {
  width: 100%;
  height: 100%;
}
.module-visual text {
  fill: rgba(238,233,228,.62);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.grid-line {
  stroke: rgba(80,80,80,.48);
  stroke-width: 1;
  shape-rendering: crispEdges;
}
.grid-major { stroke: rgba(110,110,110,.62); }
.zero-line {
  stroke: color-mix(in srgb, var(--active-accent), transparent 62%);
  stroke-width: 1.4;
}
.visual-border {
  fill: none;
  stroke: #242424;
  stroke-width: 1;
}
.visual-fill {
  fill: color-mix(in srgb, var(--active-accent), transparent 88%);
}
.visual-glow {
  fill: none;
  stroke: var(--active-accent);
  stroke-width: 8;
  stroke-opacity: .18;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visual-line {
  fill: none;
  stroke: var(--active-accent);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.visual-line.thin { stroke-width: 1.35; }
.visual-line.white { stroke: rgba(255,255,255,.5); }
.visual-line.dim { stroke-opacity: .45; }
.visual-dot {
  fill: var(--active-accent);
  stroke: rgba(238,233,228,.72);
  stroke-width: 1;
}
.visual-badge rect {
  fill: rgba(5,5,5,.9);
  stroke: color-mix(in srgb, var(--active-accent), transparent 42%);
  stroke-width: 1;
}
.visual-badge text {
  fill: var(--text);
  font-size: 11px;
  font-weight: 900;
  text-anchor: middle;
}
.control-panel {
  min-height: 226px;
  border: 1px solid color-mix(in srgb, var(--active-accent), transparent 68%);
  border-radius: 8px;
  background: rgba(5,5,5,.96);
}
.control-title {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 2px solid var(--active-accent);
}
.control-title strong {
  font-size: 14px;
  font-weight: 900;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.control-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(122px, 174px));
  justify-content: center;
  gap: 10px;
  padding: 14px;
  align-items: center;
}
.control-grid[data-module="eq"] {
  grid-template-columns: repeat(6, minmax(104px, 148px));
  gap: 8px;
  align-items: end;
}
.knob-control,
.combo-control,
.toggle-row,
.button-control {
  position: relative;
  border: 1px solid rgba(37,37,37,.78);
  border-radius: 7px;
  background: #080808;
  color: var(--text);
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
}
.knob-control {
  min-height: 132px;
  padding: 8px;
  font-size: 10.5px;
  touch-action: none;
}
.knob-control .label {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  color: var(--dim);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.knob-control .toggle-dot {
  position: absolute;
  top: 12px;
  right: 10px;
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: var(--deep);
}
.knob-control .toggle-dot::after {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--hot);
  content: "";
}
.knob-control .dial {
  position: relative;
  width: 72px;
  height: 72px;
  margin: 14px auto 7px;
  background: transparent;
  cursor: grab;
}
.knob-control:active .dial {
  cursor: grabbing;
}
.knob-control .dial svg {
  width: 100%;
  height: 100%;
}
.knob-control .dial .knob-base {
  fill: none;
  stroke: #2a2a2a;
  stroke-width: 2.1;
  stroke-linecap: round;
}
.knob-control .dial .knob-arc {
  fill: none;
  stroke: var(--hot);
  stroke-width: 2.8;
  stroke-linecap: round;
}
.knob-control .dial .knob-body {
  fill: url(#knobGradient);
  stroke: #3d3d3d;
  stroke-width: 1;
}
.knob-control .dial .knob-marker {
  stroke: var(--hot);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.knob-control .value {
  display: block;
  color: var(--text);
  font-size: 12px;
}
.combo-control {
  min-width: 138px;
  min-height: 54px;
  padding: 7px;
}
.combo-control .label {
  display: block;
  margin-bottom: 5px;
  color: var(--dim);
  font-size: 10px;
}
.combo-control .select {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 28px;
  padding: 0 28px 0 10px;
  border: 1px solid rgba(208,0,0,.7);
  border-radius: 6px;
  background: #080808;
  color: var(--text);
  font-size: 11px;
}
.combo-control .select::after {
  position: absolute;
  right: 10px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--hot);
  border-bottom: 2px solid var(--hot);
  transform: rotate(45deg);
  content: "";
}
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px;
  color: var(--dim);
  font-size: 11px;
}
.toggle-row::before {
  width: 28px;
  height: 15px;
  border-radius: 999px;
  background: var(--deep);
  box-shadow: inset 13px 0 0 var(--hot);
  content: "";
}
.button-control {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 8px 14px;
  border-color: rgba(208,0,0,.76);
  background: #0a0a0a;
  font-size: 11px;
}
.control-grid[data-module="eq"] .combo-control {
  min-width: 0;
  min-height: 48px;
  padding: 6px;
}
.control-grid[data-module="eq"] .combo-control .label {
  margin-bottom: 3px;
  font-size: 8.5px;
}
.control-grid[data-module="eq"] .combo-control .select {
  min-height: 25px;
  padding-inline: 8px 22px;
  font-size: 9.5px;
}
.control-grid[data-module="eq"] .combo-control .select::after {
  right: 8px;
  top: 8px;
  width: 7px;
  height: 7px;
}
.control-grid[data-module="eq"] .toggle-row {
  min-height: 34px;
  padding: 5px 7px;
  gap: 7px;
  font-size: 9.5px;
}
.control-grid[data-module="eq"] .toggle-row::before {
  flex: 0 0 auto;
  width: 24px;
  height: 13px;
}
.control-grid[data-module="eq"] .knob-control {
  grid-row: 3;
  min-height: 132px;
  align-self: end;
}

.preset-section,
.chain-section,
.buy-panel {
  width: min(1660px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0;
  scroll-margin-top: 118px;
}
.preset-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.preset-section > div > span,
.chain-section > span {
  display: block;
  margin-bottom: 14px;
  color: var(--hot);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.preset-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: #050505;
}
.preset-panel .preset-logo {
  grid-column: 1 / -1;
  width: 270px;
  margin-bottom: 8px;
}
.preset-panel div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 240px;
  padding: 14px;
  border: 1px solid #202020;
  border-radius: 6px;
  background: #080808;
}
.preset-panel b {
  color: var(--hot);
  font-size: 12px;
  text-transform: uppercase;
}
.preset-panel span {
  position: relative;
  padding: 10px 34px 10px 10px;
  border: 1px solid rgba(208,0,0,.52);
  border-radius: 6px;
  background: #080808;
  font-size: 13px;
  font-weight: 800;
}
.preset-panel span::after {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--hot);
  border-bottom: 2px solid var(--hot);
  transform: translateY(-70%) rotate(45deg);
  content: "";
}
.chain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.chain-grid article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid #1a1a1a;
  border-radius: 8px;
  background: linear-gradient(180deg, #080808, #030303);
}
.chain-grid b {
  display: block;
  margin-bottom: 14px;
  color: var(--hot);
  text-transform: uppercase;
}
.buy-panel {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(208,0,0,.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(208,0,0,.18), transparent 46%),
    #050505;
}
.buy-panel .buy-logo { width: 260px; }
.buy-action {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.buy-action strong {
  color: var(--text);
  font-size: clamp(34px, 4vw, 58px);
  line-height: .9;
  font-weight: 900;
}

@keyframes trace { to { stroke-dashoffset: -160; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media (max-width: 1180px) {
  .hero-layout,
  .plugin-body,
  .cinema-showcase,
  .preset-section,
  .buy-panel,
  .chain-grid,
  .sales-grid,
  .workflow-section,
  .module-stack-section,
  .offer-section {
    grid-template-columns: 1fr;
  }
  .hero-content {
    width: min(900px, 100%);
  }
  .hero-cinema .cinema-copy {
    width: min(520px, 78%);
  }
  .module-proof-grid {
    grid-template-columns: 1fr;
  }
  .stack-heading {
    position: static;
  }
  .side-meter { display: none; }
  .cinema-copy { min-height: auto; }
  .cinema-stage { min-height: clamp(390px, 68vw, 700px); }
}
@media (max-width: 760px) {
  .site-nav { grid-template-columns: 1fr auto; min-height: 64px; }
  .site-nav nav { display: none; }
  .site-nav .brand-logo { width: min(180px, 48vw); }
  .hero-banner { min-height: 84vh; padding-top: 92px; }
  .hero-layout {
    gap: 34px;
  }
  h1 { font-size: clamp(40px, 13vw, 68px); }
  .hero-cinema .cinema-copy {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
  .hero-cinema .cinema-stage {
    min-height: clamp(240px, 68vw, 390px);
  }
  .cinema-showcase {
    padding: 12px;
    border-radius: 8px;
  }
  .cinema-stage {
    min-height: clamp(260px, 72vw, 420px);
  }
  .cinema-frame {
    width: 100%;
  }
  .cinema-frame img {
    width: 100%;
  }
  .shot-tags span {
    min-height: 28px;
  }
  .buy-panel {
    justify-items: start;
  }
  .preset-zone { grid-template-columns: 1fr 40px 40px; }
  .preset-zone > span,
  .preset-zone button:nth-of-type(n+3) { display: none; }
  .macro-strip { grid-template-columns: repeat(14, 86px); overflow-x: auto; }
  .center-stack { grid-template-rows: 320px auto; }
  .control-title { grid-template-columns: 1fr; gap: 8px; padding: 10px 14px; }
  .header-controls { flex-wrap: wrap; }
  .preset-panel { grid-template-columns: 1fr; }
  .module-stack article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .workflow-steps,
  .offer-stack {
    grid-template-columns: 1fr;
  }
}
