:root {
  --bg: #050508;
  --panel: #10111a;
  --panel2: #171827;
  --text: #f6f6fb;
  --muted: #aaaec5;
  --line: rgba(255,255,255,.11);
  --purple: #7c4dff;
  --purple2: #a78bfa;
  --blue: #3b82f6;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 12%, rgba(124,77,255,.22), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(59,130,246,.16), transparent 27%),
    linear-gradient(180deg, #030305 0%, #080810 50%, #050508 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  padding: 0 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(3,3,5,.78);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 170px;
  max-height: 58px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

nav a:hover { color: var(--purple2); }

.nav-button,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 25px;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nav-button,
.secondary-btn {
  border: 1px solid var(--purple);
  color: white;
  background: rgba(124,77,255,.08);
}

.primary-btn {
  background: linear-gradient(135deg, #5b2cff, #8b5cf6);
  box-shadow: 0 14px 50px rgba(124,77,255,.35);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 76px);
  padding: 64px 32px 70px;
  text-align: center;
}

.stage-light {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(45px);
  opacity: .22;
  top: 130px;
  pointer-events: none;
}

.stage-light.left { left: -120px; background: var(--purple); }
.stage-light.right { right: -110px; background: var(--blue); }

.hero-logo {
  width: min(430px, 82vw);
  margin: 0 auto 22px;
  display: block;
}


.hero h1 {
  max-width: 930px;
  margin: 0 auto;
  font-size: clamp(37px, 5vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
}

.hero-subtitle {
  max-width: 750px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.beta-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 14px;
  border: 1px solid var(--purple);
  border-radius: 999px;
  color: var(--purple2);
  font-weight: 800;
  font-size: 13px;
}

.software-preview {
  width: min(1120px, 100%);
  margin: 38px auto 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 35px 100px rgba(0,0,0,.55);
  overflow: hidden;
  text-align: left;
}

.window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.window-bar b { margin-left: 10px; letter-spacing: .08em; text-transform: uppercase; }
.window-bar small { margin-left: auto; color: var(--muted); }

.app-layout {
  display: grid;
  grid-template-columns: 170px 1fr 170px;
  gap: 14px;
  padding: 14px;
}

aside,
.mixer-area {
  background: rgba(0,0,0,.22);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.panel-title {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  color: white;
  margin-bottom: 10px;
}

.panel-title.vst { margin-top: 20px; }

.side-card {
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(255,255,255,.05);
  font-weight: 700;
}

.side-card small,
.sound-list {
  color: var(--muted);
}

.sound-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
  font-size: 13px;
}

.section-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.section-tabs span {
  text-align: center;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 800;
}

.section-tabs .active {
  color: white;
  background: linear-gradient(135deg, #5b2cff, #8b5cf6);
}

.mini-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.mini-timeline i {
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(124,77,255,.55), transparent),
    rgba(59,130,246,.12);
  border: 1px solid rgba(124,77,255,.3);
}

.mixer {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 9px;
}

.mixer div {
  min-height: 235px;
  border: 1px solid var(--line);
  background: #0c0d13;
  border-radius: 10px;
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.mixer b {
  font-size: 10px;
  color: white;
}

.mixer em {
  position: relative;
  width: 8px;
  height: 150px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--purple), #b4ff66);
}

.mixer .master em {
  background: linear-gradient(180deg, #a78bfa, #7c4dff);
}

.features {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.features article {
  text-align: center;
  padding: 18px 8px;
}

.features span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border: 1px solid var(--purple);
  border-radius: 14px;
  color: var(--purple2);
  font-weight: 900;
}

.features h3 {
  font-size: 15px;
  text-transform: uppercase;
  line-height: 1.25;
}

.features p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.screens-section,
.faq {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
  text-align: center;
}

.eyebrow {
  color: var(--purple2);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 13px;
}

.screens-section h2,
.pricing h2,
.faq h2 {
  margin: 8px 0 30px;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.045em;
}

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

.screen-grid div {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  place-items: end center;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(124,77,255,.18), transparent),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  color: var(--purple2);
  text-transform: uppercase;
}

.pricing {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-copy ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  line-height: 2.1;
  font-size: 18px;
}

.pricing-copy li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 12px;
  color: var(--purple2);
  border: 1px solid var(--purple);
  border-radius: 50%;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}

.price-card small {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: white;
}

.price-card strong {
  display: block;
  margin-top: 8px;
  font-size: 82px;
  line-height: .9;
  letter-spacing: -.08em;
  color: var(--purple2);
}

.price-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--muted);
}

.price-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.faq {
  text-align: left;
  max-width: 850px;
}

.faq .eyebrow,
.faq h2 {
  text-align: center;
}

details {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 20px 24px;
  margin-bottom: 12px;
  background: rgba(255,255,255,.035);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
  line-height: 1.7;
}

footer {
  min-height: 100px;
  padding: 28px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

footer strong {
  color: white;
  font-size: 22px;
  letter-spacing: .08em;
}

footer strong span {
  color: var(--purple2);
  font-weight: 400;
}

@media (max-width: 980px) {
  .site-header { padding: 0 18px; }
  nav { display: none; }
  .app-layout { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .screen-grid { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .hero { padding-left: 16px; padding-right: 16px; }
  .features, .screen-grid { grid-template-columns: 1fr; }
  .mixer { grid-template-columns: repeat(3, 1fr); }
  .site-header .nav-button { display: none; }
  footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* Version 4 updates */
.hero-clean {
  min-height: auto;
  padding-top: 96px;
  padding-bottom: 48px;
}

.hero-clean .eyebrow {
  margin-bottom: 18px;
}

.trailer-placeholder {
  width: min(1120px, 100%);
  height: clamp(260px, 43vw, 560px);
  margin: 44px auto 0;
  border: 1px dashed rgba(167,139,250,.36);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 50%, rgba(124,77,255,.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 13px;
  font-weight: 800;
}


/* Version 5 trailer video */
.trailer-frame {
  width: min(1120px, 100%);
  margin: 44px auto 0;
  border: 1px solid rgba(167,139,250,.32);
  border-radius: 22px;
  overflow: hidden;
  background: #050508;
  box-shadow: 0 35px 110px rgba(0,0,0,.58);
}

.trailer-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #050508;
}


/* Version 7: trailer first */
.hero-clean {
  padding-top: 54px;
}

.hero-clean .trailer-frame {
  margin-top: 0;
  margin-bottom: 42px;
}

.hero-clean .eyebrow {
  margin-top: 0;
}

.hero-clean h1 {
  max-width: 980px;
}


/* Version 9 product sections */
.product-sections {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 84px;
}

.product-block {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 42px;
  align-items: center;
  padding: 82px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.product-block.reverse {
  grid-template-columns: 0.7fr 1.3fr;
}

.product-block.reverse .product-image {
  order: 2;
}

.product-block.reverse .product-copy {
  order: 1;
}

.product-image {
  border: 1px solid rgba(167,139,250,.24);
  border-radius: 22px;
  overflow: hidden;
  background: #050508;
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
}

.product-image img {
  display: block;
  width: 100%;
  height: auto;
}

.product-copy h2 {
  margin: 10px 0 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: .98;
  letter-spacing: -.05em;
}

.product-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.product-copy ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 2.05;
  font-size: 17px;
}

.product-copy li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--purple2);
  border: 1px solid var(--purple);
  border-radius: 50%;
  font-size: 13px;
}

@media (max-width: 980px) {
  .product-block,
  .product-block.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0;
  }

  .product-block.reverse .product-image,
  .product-block.reverse .product-copy {
    order: initial;
  }
}


.footer-social{
 display:flex;
 align-items:center;
 gap:18px;
 flex-wrap:wrap;
}

.footer-social a{
 color:#a8acc7;
 text-decoration:none;
 transition:.2s;
}

.footer-social a:hover{
 color:#a78bfa;
}


/* Version 12 accuracy + requirements */
.future-note {
  margin-top: 22px;
  color: #a78bfa;
  font-weight: 700;
}

.req-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px 0;
  overflow: hidden;
  border-radius: 14px;
}

.req-table th,
.req-table td {
  border: 1px solid rgba(255,255,255,.12);
  padding: 14px 16px;
  text-align: left;
  color: #a8acc7;
  vertical-align: top;
}

.req-table th {
  color: white;
  background: rgba(255,255,255,.06);
}

.req-notes {
  color: #a8acc7;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .req-table,
  .req-table tbody,
  .req-table tr,
  .req-table th,
  .req-table td {
    display: block;
    width: 100%;
  }

  .req-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    overflow: hidden;
  }

  .req-table th {
    display: none;
  }
}
