:root {
  color-scheme: dark;
  --bg: #050707;
  --bg2: #081010;
  --ink: #f7f2e8;
  --muted: #99a8a4;
  --soft: #d8e0dc;
  --line: rgba(247, 242, 232, 0.15);
  --panel: rgba(9, 16, 17, 0.72);
  --panel-strong: rgba(14, 24, 25, 0.94);
  --teal: #2fd6c7;
  --amber: #f0ae43;
  --coral: #ec634a;
  --green: #8edb86;
  --blue: #66b7ff;
  --mx: 50vw;
  --my: 50vh;
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 214, 199, 0.1), transparent 28rem),
    linear-gradient(180deg, #050707, #07100f 48%, #050707);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

.boot {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: #050707;
  animation: boot-out 1200ms cubic-bezier(0.76, 0, 0.24, 1) 700ms forwards;
}

.boot span {
  font-size: 6rem;
  font-weight: 900;
  transform: translateY(18px);
  animation: boot-title 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.boot i {
  position: absolute;
  width: min(58vw, 760px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--amber), transparent);
  transform: scaleX(0);
  animation: boot-line 1100ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}

.signal-canvas,
.cursor-glow {
  position: fixed;
  pointer-events: none;
}

.signal-canvas {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.68;
}

.cursor-glow {
  z-index: 2;
  top: 0;
  left: 0;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 214, 199, 0.16), rgba(240, 174, 67, 0.07) 42%, transparent 70%);
  filter: blur(28px);
  transform: translate3d(calc(var(--mx) - 17rem), calc(var(--my) - 17rem), 0);
  transition: transform 160ms ease-out;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 76px);
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0.86), rgba(5, 7, 7, 0)),
    linear-gradient(90deg, rgba(47, 214, 199, 0.08), transparent 45%);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.links,
.plugin-topline,
.marquee,
.meter-stack,
.signal-rack {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(47, 214, 199, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 214, 199, 0.18), rgba(240, 174, 67, 0.08)),
    rgba(10, 15, 16, 0.86);
  color: var(--teal);
  font-size: 13px;
  box-shadow: 0 0 34px rgba(47, 214, 199, 0.16);
}

.nav {
  gap: 22px;
  color: var(--soft);
  font-size: 14px;
}

.nav a,
.links a {
  position: relative;
}

.nav a::after,
.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.nav a:hover::after,
.links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: end;
  gap: 46px;
  padding: 148px clamp(20px, 6vw, 76px) 78px;
  overflow: hidden;
  isolation: isolate;
}

.marketplace-hero,
.policy-hero {
  position: relative;
  z-index: 1;
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: 148px clamp(20px, 6vw, 76px) 78px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.99) 0%, rgba(5, 7, 7, 0.86) 30%, rgba(5, 7, 7, 0.26) 73%),
    linear-gradient(180deg, rgba(5, 7, 7, 0), #050707 98%),
    url("/assets/buffle-audio-hero.png") center / cover no-repeat;
  transform: scale(calc(1.04 + var(--scroll) * 0.00006)) translateY(calc(var(--scroll) * -0.04px));
  filter: saturate(1.08) contrast(1.06);
}

.hero-vignette {
  z-index: -3;
  background:
    radial-gradient(circle at 72% 28%, rgba(47, 214, 199, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 65%, rgba(240, 174, 67, 0.14), transparent 22rem),
    linear-gradient(180deg, transparent, rgba(5, 7, 7, 0.72));
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: 6%;
  width: min(42vw, 620px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translateY(calc(var(--scroll) * 0.04px));
}

.hero-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(var(--r, 0deg));
  animation: orbit 16s linear infinite;
}

.hero-orbit span:nth-child(2) {
  inset: 13%;
  --r: 38deg;
  animation-duration: 22s;
}

.hero-orbit span:nth-child(3) {
  inset: 27%;
  --r: 88deg;
  animation-duration: 13s;
  border-color: rgba(47, 214, 199, 0.22);
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: 10.8rem;
  line-height: 0.78;
}

h1 span {
  display: block;
  clip-path: inset(0 0 0 0);
  text-shadow: 0 16px 70px rgba(47, 214, 199, 0.12);
}

h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(247, 242, 232, 0.82);
}

h2 {
  margin-bottom: 18px;
  font-size: 5.125rem;
  line-height: 0.96;
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.05;
}

.hero-copy,
.section-head p,
.studio-copy p,
.signal-panel p {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.62;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 14, 15, 0.72);
  color: var(--ink);
  font-weight: 900;
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.24), transparent 58%);
  transform: translateX(-110%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 214, 199, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.button:hover::before {
  transform: translateX(110%);
}

.button.primary {
  border-color: rgba(47, 214, 199, 0.72);
  background: linear-gradient(135deg, #2fd6c7, #f0ae43);
  color: #041010;
}

.hero-console {
  align-self: center;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(6, 13, 14, 0.62);
  box-shadow:
    0 30px 120px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(47, 214, 199, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(calc(var(--scroll) * -0.025px));
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-top b {
  color: var(--green);
}

.meter-stack {
  height: 148px;
  gap: 8px;
  align-items: end;
  margin: 34px 0 26px;
}

.meter-stack i {
  width: 100%;
  height: var(--h);
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--teal), var(--amber));
  animation: meter-pulse 1100ms ease-in-out infinite alternate;
}

.meter-stack i:nth-child(2n) {
  animation-delay: 180ms;
}

.meter-stack i:nth-child(3n) {
  animation-delay: 360ms;
}

.console-wave {
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 8px;
  background: rgba(2, 6, 7, 0.56);
}

.console-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.console-wave path,
.mini-display svg path {
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(47, 214, 199, 0.6));
  stroke-dasharray: 12 10;
  animation: dash-flow 900ms linear infinite;
}

.console-wave path:nth-child(2) {
  stroke: var(--amber);
  opacity: 0.72;
  animation-duration: 1300ms;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 70px;
  border: 1px solid rgba(247, 242, 232, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 14px;
  border-radius: 999px;
  background: var(--teal);
  animation: scroll-dot 1400ms ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 4;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 242, 232, 0.04);
}

.marquee div {
  flex: 0 0 auto;
  display: flex;
  min-width: 100%;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 16px 28px;
  color: rgba(247, 242, 232, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-band,
.pricing-band,
.pledge-band,
.signal-band,
.studio-band {
  position: relative;
  z-index: 4;
  padding: 96px clamp(20px, 6vw, 76px);
}

.section-head,
.signal-panel {
  max-width: 840px;
  margin-bottom: 38px;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;
}

.screenshot-showcase {
  margin-top: 108px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  perspective: 1400px;
}

.screenshot-card {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-top-color: var(--accent);
  border-radius: 8px;
  background: rgba(4, 8, 9, 0.72);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.screenshot-card::before,
.screenshot-card::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.screenshot-card::before {
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0), rgba(5, 7, 7, 0.58)),
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), color-mix(in srgb, var(--accent), transparent 58%), transparent 32%);
}

.screenshot-card::after {
  inset: 1px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent) -100% 0 / 70% 100% no-repeat;
  transition: background-position 620ms ease;
}

.screenshot-card:hover {
  border-color: color-mix(in srgb, var(--accent), white 16%);
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.5), 0 0 48px color-mix(in srgb, var(--accent), transparent 80%);
}

.screenshot-card:hover::after {
  background-position: 190% 0;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.screenshot-card:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.055);
}

.screenshot-meta {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 999px;
  background: rgba(4, 8, 9, 0.72);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.plugin-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-top-color: var(--accent);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 33%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent), transparent 86%), transparent 42%),
    var(--panel);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.plugin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(#000, transparent 64%);
}

.plugin-card:hover {
  border-color: color-mix(in srgb, var(--accent), white 16%);
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.4), 0 0 46px color-mix(in srgb, var(--accent), transparent 76%);
}

.card-halo {
  position: absolute;
  inset: -30%;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), color-mix(in srgb, var(--accent), transparent 58%), transparent 26%);
  transition: opacity 220ms ease;
}

.plugin-card:hover .card-halo {
  opacity: 0.36;
}

.plugin-card > *:not(.card-halo) {
  position: relative;
  z-index: 1;
}

.plugin-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 46px;
}

.plugin-kicker,
.status {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plugin-kicker {
  color: var(--accent);
}

.status {
  padding: 6px 9px;
  border: 1px solid rgba(247, 242, 232, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(4, 8, 9, 0.44);
}

.status.live {
  color: var(--green);
}

.plugin-card p {
  color: var(--soft);
  line-height: 1.55;
}

.mini-display {
  position: relative;
  height: 118px;
  margin: 18px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 242, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 242, 232, 0.04) 1px, transparent 1px),
    rgba(2, 6, 7, 0.52);
  background-size: 26px 26px;
}

.mini-display.bars {
  display: flex;
  align-items: end;
  gap: 7px;
  padding: 14px;
}

.mini-display.bars i {
  flex: 1;
  height: 30%;
  border-radius: 999px 999px 2px 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: bar-dance 1100ms ease-in-out infinite alternate;
}

.mini-display.bars i:nth-child(2n) {
  animation-delay: 180ms;
}

.mini-display.bars i:nth-child(3n) {
  animation-delay: 360ms;
}

.mini-display.knobs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px;
}

.mini-display.knobs i {
  aspect-ratio: 1;
  border: 1px solid rgba(247, 242, 232, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(247, 242, 232, 0.14), transparent 34%),
    conic-gradient(from 40deg, var(--accent), transparent 62%, var(--amber));
  animation: knob-turn 2800ms ease-in-out infinite alternate;
}

.mini-display.lanes {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mini-display.lanes i {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 242, 232, 0.08);
}

.mini-display.lanes i::before {
  content: "";
  position: absolute;
  inset: 0 36% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--accent), var(--amber));
  animation: lane-slide 1900ms ease-in-out infinite alternate;
}

.mini-display.curve svg {
  width: 100%;
  height: 100%;
  padding: 14px;
}

.plugin-facts {
  display: grid;
  gap: 1px;
  margin: auto 0 22px;
  border: 1px solid rgba(247, 242, 232, 0.1);
  background: rgba(247, 242, 232, 0.1);
}

.plugin-facts div {
  min-height: 70px;
  padding: 12px;
  background: rgba(4, 8, 9, 0.58);
}

dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
}

.links {
  flex-wrap: wrap;
  gap: 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.pricing-band {
  background:
    radial-gradient(circle at 14% 18%, rgba(102, 183, 255, 0.13), transparent 25rem),
    radial-gradient(circle at 88% 42%, rgba(236, 99, 74, 0.1), transparent 26rem),
    rgba(5, 8, 8, 0.74);
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  perspective: 1400px;
}

.price-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-top-color: var(--accent);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent), transparent 86%), transparent 44%),
    rgba(8, 14, 15, 0.78);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: linear-gradient(#000, transparent 70%);
}

.price-card:hover {
  border-color: color-mix(in srgb, var(--accent), white 16%);
  box-shadow: 0 40px 104px rgba(0, 0, 0, 0.44), 0 0 44px color-mix(in srgb, var(--accent), transparent 82%);
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: 4.2rem;
  line-height: 0.9;
}

.price-card p {
  color: var(--soft);
  line-height: 1.5;
}

.price-card dl {
  display: grid;
  gap: 1px;
  margin: auto 0 0;
  border: 1px solid rgba(247, 242, 232, 0.1);
  background: rgba(247, 242, 232, 0.1);
}

.price-card dl div {
  min-height: 62px;
  padding: 11px;
  background: rgba(4, 8, 9, 0.58);
}

.launch-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(47, 214, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(47, 214, 199, 0.12), transparent),
    rgba(8, 14, 15, 0.78);
}

.launch-note strong {
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
}

.launch-note span {
  color: var(--soft);
  line-height: 1.55;
}

.launch-note a {
  color: var(--teal);
  font-weight: 900;
}

.marketplace-products {
  border-top: 1px solid var(--line);
}

.product-action {
  align-self: start;
  margin-top: 18px;
}

.suite-offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(47, 214, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(47, 214, 199, 0.14), rgba(240, 174, 67, 0.08), transparent),
    rgba(8, 14, 15, 0.82);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.34);
}

.suite-offer h2 {
  margin-bottom: 12px;
}

.suite-offer p:last-child {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.58;
}

.pledge-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 28%, rgba(142, 219, 134, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(247, 242, 232, 0.035), transparent);
}

.pledge-copy p {
  color: var(--soft);
  font-size: 19px;
  line-height: 1.62;
}

.pledge-disclaimer {
  padding: 18px;
  border: 1px solid rgba(247, 242, 232, 0.12);
  border-left-color: var(--green);
  border-radius: 8px;
  background: rgba(8, 14, 15, 0.72);
  font-size: 14px !important;
}

.pledge-meter {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(8, 14, 15, 0.78);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.34);
}

.pledge-meter span,
.pledge-meter strong {
  display: block;
  padding: 18px;
  border: 1px solid rgba(247, 242, 232, 0.1);
  border-radius: 8px;
  background: rgba(4, 8, 9, 0.58);
}

.pledge-meter span {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.pledge-meter strong {
  color: var(--green);
  font-size: 22px;
  line-height: 1.15;
}

.pledge-meter i {
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--green), var(--teal), transparent) 0 0 / 220% 100%,
    rgba(247, 242, 232, 0.08);
  animation: module-meter 1400ms linear infinite;
}

.policy-band {
  position: relative;
  z-index: 4;
  padding: 96px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 24%, rgba(142, 219, 134, 0.12), transparent 24rem),
    rgba(5, 8, 8, 0.74);
}

.policy-band.alt {
  background:
    radial-gradient(circle at 18% 22%, rgba(102, 183, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(247, 242, 232, 0.035), transparent);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.policy-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-top-color: var(--green);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(142, 219, 134, 0.12), transparent 50%),
    rgba(8, 14, 15, 0.78);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.policy-card p {
  margin: 34px 0 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.58;
}

.status-band {
  position: relative;
  z-index: 4;
  padding: 96px clamp(20px, 6vw, 76px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 24%, rgba(47, 214, 199, 0.11), transparent 24rem),
    rgba(5, 8, 8, 0.74);
}

.status-band.alt {
  background:
    radial-gradient(circle at 82% 18%, rgba(236, 99, 74, 0.1), transparent 25rem),
    linear-gradient(180deg, rgba(247, 242, 232, 0.035), transparent);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.status-card {
  min-height: 300px;
  padding: 22px;
  border: 1px solid rgba(247, 242, 232, 0.13);
  border-top-color: var(--teal);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(47, 214, 199, 0.12), transparent 50%),
    rgba(8, 14, 15, 0.78);
  box-shadow: 0 28px 84px rgba(0, 0, 0, 0.28);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(142, 219, 134, 0.36);
  border-radius: 999px;
  color: var(--green);
  background: rgba(142, 219, 134, 0.08);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card h3 {
  margin: 38px 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.status-card p {
  color: var(--soft);
  line-height: 1.55;
}

.press-grid .plugin-card {
  min-height: 360px;
}

.pledge-disclaimer a,
.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 46px;
  align-items: center;
  min-height: 74vh;
  background:
    radial-gradient(circle at 78% 28%, rgba(47, 214, 199, 0.12), transparent 26rem),
    linear-gradient(180deg, transparent, rgba(247, 242, 232, 0.03), transparent);
}

.signal-rack {
  position: relative;
  display: grid;
  gap: 14px;
}

.signal-rack::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--teal), var(--amber), transparent);
  animation: rack-flow 1800ms ease-in-out infinite alternate;
}

.rack-module {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr minmax(74px, 22%);
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 16, 17, 0.7);
  backdrop-filter: blur(14px);
}

.rack-module span {
  color: var(--teal);
  font-weight: 900;
}

.rack-module strong {
  font-size: 24px;
}

.rack-module i {
  height: 18px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, var(--teal), var(--amber), transparent) 0 0 / 220% 100%,
    rgba(247, 242, 232, 0.08);
  animation: module-meter 1400ms linear infinite;
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: start;
  background: rgba(5, 8, 8, 0.74);
  border-top: 1px solid var(--line);
}

.capability-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.capability-list div {
  padding: 22px;
  background: var(--panel-strong);
  transition: background 260ms ease, transform 260ms ease;
}

.capability-list div:hover {
  background: rgba(18, 31, 32, 0.98);
  transform: translateX(8px);
}

.capability-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 15px;
  text-transform: uppercase;
}

.capability-list span {
  color: var(--soft);
  line-height: 1.5;
}

.site-footer {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 6vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 800ms ease,
    transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.magnet {
  transition: transform 160ms ease-out;
}

@keyframes boot-out {
  to {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4%);
  }
}

@keyframes boot-title {
  to {
    transform: translateY(0);
  }
}

@keyframes boot-line {
  55% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.18) translateY(78px);
    opacity: 0.3;
  }
}

@keyframes orbit {
  to {
    transform: rotateX(68deg) rotateZ(calc(var(--r, 0deg) + 360deg));
  }
}

@keyframes meter-pulse {
  to {
    height: calc(var(--h) * 0.58);
    opacity: 0.72;
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes scroll-dot {
  0%,
  100% {
    transform: translateY(-14px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(14px);
    opacity: 1;
  }
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

@keyframes bar-dance {
  to {
    height: 88%;
  }
}

@keyframes knob-turn {
  to {
    transform: rotate(50deg);
  }
}

@keyframes lane-slide {
  to {
    transform: translateX(42%);
  }
}

@keyframes rack-flow {
  to {
    filter: drop-shadow(0 0 18px var(--teal));
    opacity: 0.45;
  }
}

@keyframes module-meter {
  to {
    background-position: 220% 0;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-console {
    max-width: 520px;
  }

  .plugin-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 8rem;
  }

  h2 {
    font-size: 4.2rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 178px;
    grid-template-columns: 1fr;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-console,
  .scroll-cue {
    display: none;
  }

  .hero-copy,
  .section-head p,
  .studio-copy p,
  .signal-panel p {
    font-size: 17px;
  }

  .boot span {
    font-size: 2.8rem;
  }

  h1 {
    font-size: 4.75rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .portfolio-band,
  .pricing-band,
  .pledge-band,
  .signal-band,
  .studio-band {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .plugin-grid,
  .pricing-grid,
  .policy-grid,
  .status-grid,
  .screenshot-grid,
  .pledge-band,
  .signal-band,
  .studio-band {
    grid-template-columns: 1fr;
  }

  .launch-note {
    grid-template-columns: 1fr;
  }

  .suite-offer {
    grid-template-columns: 1fr;
  }

  .price-card h3 {
    font-size: 3.2rem;
  }

  .plugin-card {
    min-height: 500px;
  }

  .rack-module {
    grid-template-columns: 42px 1fr;
  }

  .rack-module i {
    grid-column: 1 / -1;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .signal-canvas,
  .cursor-glow,
  .boot {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
