:root {
  color-scheme: dark;
  --bg: #11100e;
  --panel: #1b1916;
  --panel-strong: #24211d;
  --line: rgba(248, 241, 228, 0.08);
  --line-strong: rgba(248, 241, 228, 0.16);
  --text: #f7f1e8;
  --muted: #b9afa3;
  --dim: #756c62;
  --accent: #d97757;
  --accent-rgb: 217, 119, 87;
  --accent-hover: #e68a68;
  --accent-warm: #f0c59e;
  --signal-cyan: rgba(240, 197, 158, 0.42);
  --signal-violet: rgba(217, 119, 87, 0.46);
  --success: #3fb950;
  --warn: #d29922;
  --error: #f97373;
  --radius: 16px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 246, 230, 0.018), transparent 34rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.032'/%3E%3C/svg%3E");
  background-size: auto, 120px 120px;
}

body::after {
  content: none;
}

@keyframes motif-aurora {
  to {
    transform: rotate(1turn);
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    animation: none;
  }
}

.soul-shell {
  position: relative;
  z-index: 1;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
  transition: all 0.2s ease;
}

a {
  color: rgba(213, 194, 176, 0.82);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.85;
}

.soul-shell {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* Header */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 20px;
}

.brand {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0.01em;
}

.top-nav a {
  color: rgba(213, 194, 176, 0.58);
}

.top-nav a:hover {
  color: rgba(247, 241, 232, 0.86);
}

.buy-button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.buy-button:hover {
  border-color: var(--accent);
  background: rgba(90, 45, 168, 0.18);
}

/* Hero Section */
.stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.36fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-kicker {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.8vw, 70px);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--text);
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.stream-text.is-prepared {
  visibility: hidden;
}

.stream-text.is-visible {
  visibility: visible;
}

.stream-token {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.72em);
  filter: blur(7px);
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  will-change: opacity, transform, filter;
}

.stream-text.is-visible .stream-token {
  animation: stream-token-in 0.68s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--stream-delay, 0ms) + (var(--stream-index) * 34ms));
}

.stream-text.is-complete .stream-token {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes stream-token-in {
  0% {
    opacity: 0;
    transform: translateY(0.72em);
    filter: blur(7px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.stream-panel.is-prepared {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.stream-panel.is-visible {
  animation: stream-panel-in 0.76s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--stream-panel-delay, 0ms);
}

@keyframes stream-panel-in {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.conversion-steps {
  display: grid;
  gap: 16px;
}

.conversion-step {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conversion-step + .conversion-step {
  margin-top: 2px;
}

.step-kicker {
  font-size: 11px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  font-weight: 700;
}

.conversion-step h3 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-heading);
}

.conversion-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.conversion-step .license-entry {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  gap: 10px;
}

.step-status {
  min-height: 20px;
  margin-top: 4px;
  font-size: 13px;
}

.step-status--pending {
  color: var(--warn);
}

.step-status--success {
  color: var(--success);
}

.step-status--error {
  color: var(--error);
}

.step-status--info,
.step-status--idle {
  color: var(--muted);
}

.hero-buy {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 26px;
  background: #f7f1e8;
  color: #17130f;
  border: 1px solid rgba(248, 241, 228, 0.16);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(248, 241, 228, 0.14);
}

.hero-buy:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.primary-checkout {
  min-height: 50px;
  border-radius: 999px;
  padding: 0 26px;
  background: #f7f1e8;
  border: 1px solid rgba(248, 241, 228, 0.16);
  color: #17130f;
  font-size: 14.5px;
  font-weight: 750;
  cursor: pointer;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-checkout:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(248, 241, 228, 0.14);
}

.primary-checkout:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.purchase-trust-line {
  margin: -10px 0 0;
  color: var(--dim);
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
}

.purchase-trust-line a {
  color: var(--muted);
}

.commerce-card-centered .step-status:empty {
  display: none;
}

.scroll-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid rgba(248, 241, 228, 0.24);
  padding-bottom: 2px;
}

.scroll-link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.demo-link {
  text-transform: none;
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

.demo-link:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.hero-mockup-wrapper {
  position: relative;
  width: min(100%, 860px);
  justify-self: end;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.08), rgba(248, 241, 228, 0.025)),
    rgba(27, 25, 22, 0.78);
  box-shadow:
    0 0 0 1px rgba(248, 241, 228, 0.16),
    0 44px 110px rgba(0, 0, 0, 0.52);
  overflow: hidden;
}

.hero-mockup-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 244, 226, 0.16), transparent 24%),
    radial-gradient(circle at 50% 45%, rgba(240, 197, 158, 0.12), transparent 34%);
  mix-blend-mode: soft-light;
}

.hero-mockup-wrapper::after {
  content: "";
  position: absolute;
  inset: auto 14% -24px 14%;
  height: 42px;
  border-radius: 999px;
  z-index: 2;
  background: rgba(217, 119, 87, 0.24);
  filter: blur(38px);
  pointer-events: none;
}

.hero-signal-layer {
  position: absolute;
  inset: 16px;
  border-radius: 10px;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.signal-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(to right, rgba(248, 241, 228, 0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(248, 241, 228, 0.1) 1px, transparent 1px);
  background-size: 42px 40px;
  mix-blend-mode: soft-light;
}

.signal-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 3px;
  border-radius: 999px;
  opacity: 0.22;
  background: linear-gradient(90deg, transparent, var(--signal-cyan), rgba(248, 241, 228, 0.54), transparent);
  filter: blur(0.4px);
}

.signal-wave-one {
  top: 28%;
  animation: signal-wave-drift 4.8s ease-in-out infinite;
}

.signal-wave-two {
  top: 62%;
  animation: signal-wave-drift 5.8s ease-in-out infinite reverse;
}

.prompt-chip {
  position: absolute;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 241, 228, 0.18);
  background: rgba(17, 16, 14, 0.52);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  animation: chip-float 6s ease-in-out infinite;
  animation-duration: 10s;
}

.chip-one {
  top: 12%;
  right: 8%;
}

.chip-two {
  left: 8%;
  bottom: 16%;
  animation-delay: 0.8s;
}

@keyframes signal-wave-drift {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.2;
  }
  50% {
    transform: translateX(6%);
    opacity: 0.7;
  }
}

@keyframes chip-float {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.55;
  }
}

.hero-mockup-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  position: relative;
  z-index: 3;
}

.hero-mockup-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #070711;
}

.hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(248, 241, 228, 0.24);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.76);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(217, 119, 87, 0.18);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease;
}

.hero-video-play:hover,
.hero-video-play:focus-visible {
  border-color: rgba(248, 241, 228, 0.42);
  background: rgba(34, 29, 24, 0.88);
  transform: translate(-50%, -50%) scale(1.03);
}

.hero-video-play:focus-visible {
  outline: 3px solid rgba(139, 92, 246, 0.45);
  outline-offset: 4px;
}

.hero-video-play-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(217, 119, 87, 0.36);
}

.hero-video-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.hero-mockup-wrapper.is-playing .hero-video-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 12, 0.78);
  backdrop-filter: blur(12px);
}

.demo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 48px));
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  background: #050711;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 80px rgba(122, 67, 200, 0.2);
}

.demo-modal-video,
.demo-modal-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  display: block;
}

.demo-modal-close {
  position: absolute;
  right: -14px;
  top: -14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(8, 10, 22, 0.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.demo-modal-close::before,
.demo-modal-close::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.demo-modal-close::before {
  transform: rotate(45deg);
}

.demo-modal-close::after {
  transform: rotate(-45deg);
}

.demo-modal-close:hover,
.demo-modal-close:focus-visible {
  background: rgba(34, 20, 62, 0.96);
  border-color: rgba(255, 255, 255, 0.42);
  outline: none;
}

body.demo-modal-open {
  overflow: hidden;
}

body.demo-modal-open .soul-shell {
  filter: blur(3px);
  transform: scale(0.995);
}

.how-it-works {
  border-top: 1px solid var(--line);
  padding-top: 64px;
  margin-bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.flow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.flow-cards article {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flow-cards article span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(122, 67, 200, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.flow-cards article h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.flow-cards article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.flow-card:hover {
  border-color: rgba(154, 110, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(12, 16, 24, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.32),
    0 0 48px rgba(122, 67, 200, 0.08);
}


/* Integrations Section */
.integration-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 96px;
  border-top: 1px solid var(--line);
  padding-top: 64px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.integration-panel .section-head {
  align-items: center;
  gap: 14px;
  position: relative;
  isolation: isolate;
  max-width: 900px;
  margin-inline: auto;
  padding: 18px 34px 22px;
  text-align: center;
}

.integration-panel .section-head::before {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 222, 203, 0.22), transparent);
  opacity: 0.5;
}

.integration-panel .section-head > span {
  color: rgba(213, 194, 176, 0.5);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: none;
}

.integration-panel .section-head h2 {
  max-width: 760px;
  color: rgba(245, 240, 232, 0.94);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: none;
}

.integration-panel .section-head h2 .stream-token {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.section-head > span {
  font-family: var(--font-heading);
  color: rgba(213, 194, 176, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* DAW integration layout */
.integration-row {
  display: grid;
  gap: 20px;
}

.integration-primary {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
}

.integration-roadmap {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  justify-content: center;
}

.integration-roadmap .daw-card {
  background: rgba(27, 25, 22, 0.46);
}

.daw-status {
  display: inline-flex;
  margin-top: 5px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 999px;
}

.daw-status-available {
  color: #9ef2b7;
  border: 1px solid rgba(63, 185, 80, 0.35);
  background: rgba(63, 185, 80, 0.1);
}

/* Shared "coming soon" badge style */
.daw-badge-coming {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 4px;
}

.daw-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.daw-card-header div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.daw-version {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.daw-card-header h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  font-weight: 760;
  color: var(--text);
  line-height: 1.2;
}

.daw-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  flex-grow: 1;
}

.daw-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}

.daw-quote span {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  position: relative;
  padding-left: 14px;
}

.daw-quote span::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 20px;
  color: rgba(213, 194, 176, 0.58);
  font-family: var(--font-heading);
}

/* Purchase Section (Embedded Commerce page) */
.commerce-section {
  border-top: 1px solid var(--line);
  padding-top: 64px;
  margin-bottom: 64px;
}

.thanks-shell {
  padding-bottom: 72px;
}

.thanks-section {
  border-top: 1px solid var(--line);
  padding-top: 64px;
  margin-bottom: 64px;
}

.thanks-section .step-status {
  margin-bottom: 2px;
}

.thanks-key-copy {
  margin-bottom: 4px;
}

.thanks-install-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  height: 46px;
}

.thanks-install-link.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: auto;
}

.thanks-support {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.thanks-support a {
  font-weight: 700;
  color: #fff;
}

.post-purchase-setup,
.post-purchase-privacy {
  border-top: 1px solid var(--line);
  padding-top: 72px;
}

.post-purchase-setup {
  margin-bottom: 72px;
}

.setup-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.setup-image-card {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(248, 241, 228, 0.018);
  box-shadow: none;
}

.setup-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #0a0d14;
}

.setup-image-card figcaption {
  padding: 12px 14px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.privacy-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.privacy-summary-item {
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(248, 241, 228, 0.018);
  padding: 18px;
}

.privacy-summary-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.25;
  color: #fff;
}

.privacy-summary-item p,
.privacy-summary-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-summary-note {
  margin-top: 16px;
}

.privacy-summary-note a {
  color: #fff;
  font-weight: 800;
}

.commerce-card-centered {
  max-width: 580px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.045), rgba(248, 241, 228, 0.018)),
    rgba(27, 25, 22, 0.86);
  padding: 36px 36px 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.commerce-head-direct {
  margin-bottom: 0;
}

.commerce-head-direct > span {
  font-family: var(--font-heading);
  color: rgba(213, 194, 176, 0.66);
  font-size: 16px;
  font-weight: 540;
  letter-spacing: 0;
  text-transform: none;
}

.commerce-head-direct h2 {
  margin: 6px 0 8px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.08;
}

.commerce-head-direct p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.license-includes {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.license-includes li {
  position: relative;
  padding-left: 24px;
  color: #d8dce6;
  font-size: 14px;
  line-height: 1.45;
}

.license-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ef2b7;
  font-weight: 900;
}

.license-includes li::before {
  content: "+";
}

.license-note {
  margin-top: 16px !important;
  color: var(--muted);
  font-size: 12.5px !important;
}

.purchase-after-note {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 241, 228, 0.1);
  color: var(--muted) !important;
  font-size: 13px !important;
}

.early-access-disclosure {
  margin: 10px 0 0 !important;
  color: rgba(216, 220, 230, 0.82) !important;
  font-size: 12.5px !important;
  line-height: 1.55;
}

.early-access-disclosure strong {
  color: rgba(255, 255, 255, 0.92);
}

.thanks-disclosure {
  margin: 10px 0 16px !important;
}

.plan-switch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.single-plan {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.single-plan strong {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.single-plan small {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.plan-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-option:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.plan-option.active {
  border-color: rgba(213, 194, 176, 0.28);
  background: rgba(248, 241, 228, 0.04);
}

.plan-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(213, 194, 176, 0.66);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.plan-option strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.original-price {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--dim);
  margin-left: 6px;
  font-weight: 500;
}

.plan-option small {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

.install-button {
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
}

.install-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.install-fallback {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.install-fallback-link {
  font-weight: 600;
}

.refund-support-line {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.refund-support-line a {
  color: #fff;
  font-weight: 600;
}

.checkout-success-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(63, 185, 80, 0.34);
  border-radius: 8px;
  background: rgba(63, 185, 80, 0.06);
}

.checkout-success-panel[hidden] {
  display: none;
}

.purchase-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.02);
}

.license-helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.success-kicker {
  color: var(--success);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-success-panel h3 {
  margin: 0;
  font-size: 18px;
}

.checkout-success-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.activation-key-copy {
  display: flex;
  gap: 10px;
  align-items: center;
}

.post-purchase-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-purchase-panel h3 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-heading);
}

.post-purchase-list {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-purchase-list li::marker {
  color: rgba(213, 194, 176, 0.62);
}

.post-purchase-contacts {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.post-purchase-faq {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
}

.post-purchase-faq-lead {
  margin: 2px 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 12px 36px 12px 14px;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(213, 194, 176, 0.45);
  outline-offset: -2px;
  background: rgba(248, 241, 228, 0.045);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 10px;
  font-size: 18px;
  color: rgba(213, 194, 176, 0.62);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.faq-support-cta {
  margin: 12px 0 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.faq-support-cta a {
  font-weight: 700;
  color: #fff;
}

.faq-support-cta strong {
  color: #fff;
}

.post-purchase-faq summary {
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.post-purchase-faq dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-purchase-faq div {
  margin: 0;
}

.post-purchase-faq dt {
  margin: 0;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.post-purchase-faq dd {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.activation-key-copy code {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.24);
  padding: 11px 12px;
  color: #eaf7ff;
  font-size: 13px;
}

.activation-key-copy button {
  height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(213, 194, 176, 0.22);
  border-radius: 6px;
  background: rgba(248, 241, 228, 0.04);
  color: rgba(247, 241, 232, 0.9);
  font-weight: 700;
  cursor: pointer;
}

.activation-key-copy button:hover {
  background: rgba(248, 241, 228, 0.08);
}

.license-entry {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.license-entry label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.license-input-group {
  display: flex;
  gap: 10px;
}

.license-input-group input {
  flex: 1;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  padding: 0 14px;
  color: #fff;
  font-size: 14px;
}

.license-input-group input:focus {
  outline: none;
  border-color: rgba(213, 194, 176, 0.42);
}

.license-input-group button {
  height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.license-input-group button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.billing-status {
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(213, 194, 176, 0.74);
}

.manage-portal-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13px;
}

.manage-portal-wrap span {
  color: var(--muted);
}

.manage-portal-wrap a {
  color: rgba(213, 194, 176, 0.82);
  font-weight: 600;
}

.manage-portal-wrap a:hover {
  text-decoration: underline;
}

/* Logos & Badges */
.logo-badge {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background:
    var(--logo-img) center / 70% 70% no-repeat,
    linear-gradient(180deg, var(--logo-a), var(--logo-b));
}

.logo-large {
  width: 38px;
  height: 38px;
  border-radius: 6px;
}

.logo-pro-tools { --logo-a: #4ea9ff; --logo-b: #163f82; --logo-img: url("assets/logos/pro-tools.png"); }
.logo-studio-one { --logo-a: #2ea7ff; --logo-b: #1e4fa5; --logo-img: url("assets/logos/studio-one.png"); }
.logo-ableton { --logo-a: #f2f2f2; --logo-b: #5a5a5a; --logo-img: url("assets/logos/ableton.svg"); }
.logo-fl-studio { --logo-a: #f58a2a; --logo-b: #62b94a; --logo-img: url("assets/logos/fl-studio.png"); }
.logo-reaper { --logo-a: #7fb15d; --logo-b: #b06935; --logo-img: url("assets/logos/reaper.png"); }
.logo-cubase { --logo-a: #2e8fe8; --logo-b: #153f83; --logo-img: url("assets/logos/cubase.png"); }

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(213, 194, 176, 0.62);
  font-family: var(--font-heading);
  font-weight: 540;
  letter-spacing: 0;
  text-transform: none;
}

.legal-page {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.04), rgba(248, 241, 228, 0.016)),
    rgba(27, 25, 22, 0.86);
  padding: clamp(26px, 5vw, 52px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.legal-kicker {
  margin: 0 0 10px;
  color: rgba(213, 194, 176, 0.56);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.legal-page h1,
.legal-page h2 {
  font-family: var(--font-heading);
  color: #fff;
  line-height: 1.15;
}

.legal-page h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 600;
}

.legal-page h2 {
  margin: 30px 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.legal-page p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Responsive Grid Adjustments */
@media (max-width: 900px) {
  .stage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-mockup-wrapper {
    max-width: 500px;
    margin: 0 auto;
    transform: none;
  }

  .hero-signal-layer {
    inset: 10px;
  }
  
  .signal-grid,
  .signal-wave,
  .prompt-chip {
    display: none;
  }
  
  .integration-primary {
    grid-template-columns: repeat(2, 1fr);
  }

  .integration-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stream-text.is-prepared,
  .stream-text.is-visible {
    visibility: visible;
  }

  .stream-token {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }

  .stream-panel.is-prepared,
  .stream-panel.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .topbar {
    margin-bottom: 40px;
  }

  .top-nav {
    gap: 16px;
    font-size: 12px;
  }

  .stage {
    margin-bottom: 64px;
  }
}

@media (max-width: 600px) {
  .integration-primary,
  .integration-roadmap,
  .setup-image-grid,
  .privacy-summary-grid {
    grid-template-columns: 1fr;
  }

  .flow-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .top-nav {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .buy-button {
    width: 100%;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .faq-item summary {
    padding-right: 32px;
    font-size: 12.5px;
  }

  .faq-item p {
    font-size: 12px;
    line-height: 1.4;
  }

  .faq-support-cta {
    font-size: 11.5px;
    line-height: 1.4;
  }

  .hero-actions button,
  .hero-actions a {
    text-align: center;
    width: 100%;
  }
  
}

@media (prefers-reduced-motion: reduce) {
  .signal-wave,
  .prompt-chip {
    animation: none !important;
  }
  
  .hero-mockup-wrapper {
    transform: none;
  }
}

.conversion-step,
.single-plan,
.flow-card {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(248, 241, 228, 0.1);
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.05), rgba(248, 241, 228, 0.018)),
    rgba(27, 25, 22, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(248, 241, 228, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: all 0.25s ease;
}

.daw-card:hover,
.conversion-step:hover,
.single-plan:hover {
  border-color: rgba(240, 197, 158, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(248, 241, 228, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.28);
}

.commerce-card-centered,
.workflow-proof,
.public-faq {
  border-radius: 22px;
}

.daw-card {
  border: 1px solid rgba(248, 241, 228, 0.1);
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.052), rgba(248, 241, 228, 0.018)),
    rgba(27, 25, 22, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(248, 241, 228, 0.06),
    0 24px 70px rgba(0, 0, 0, 0.2);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
  position: relative;
  border-radius: 22px;
  backdrop-filter: blur(14px);
}

.daw-card:hover {
  border-color: rgba(240, 197, 158, 0.26);
  background:
    linear-gradient(180deg, rgba(248, 241, 228, 0.065), rgba(248, 241, 228, 0.022)),
    rgba(31, 28, 24, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(248, 241, 228, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.26);
}
