/*
 * ScoreBraid / Kernframe. Fluid large-screen layout.
 * 1920 CSS px: 16px root, 1280px content.
 * 2560 CSS px: 21.33px root, 1706.67px content.
 * 3840 CSS px: 32px root, 2560px content (the 200%-at-1920 proportions).
 * Larger viewports cap at a 40px root, avoiding unlimited expansion.
 * Uses the available browser viewport, not physical screen size or pixel ratio.
 * This is real layout: no CSS zoom or whole-page transform.
 */
:root {
  font-size: clamp(1rem, 0.833333333333vw, 2.5rem);
}
/* ScoreBraid / Kernframe. No framework or web-font download required. */
:root {
  color-scheme: dark;
  --bg: #0a1222;
  --bg-deep: #080f1d;
  --surface: #101d31;
  --surface-high: #14253c;
  --line: #253449;
  --ink: #f1f5ff;
  --muted: #a2b0c5;
  --subtle: #73849e;
  --cyan: #47deeb;
  --teal: #50dbc2;
  --violet: #ac86ff;
  --font: "Inter","Inter Display","Segoe UI",Arial,sans-serif;
  --radius: 1.125rem;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
}
button,a,input,summary {
  -webkit-tap-highlight-color: transparent;
}
button,input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
p,h1,h2,h3 {
  margin: 0;
}
h1,h2,h3 {
  font-family: "Inter Display",var(--font);
  font-weight: 600;
}
h1,h2 {
  letter-spacing: -.055em;
  line-height: 1.06;
}
h3 {
  letter-spacing: -.035em;
  line-height: 1.2;
}
p {
  color: var(--muted);
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline: 0.125rem solid var(--cyan);
  outline-offset: 0.3125rem;
}
::selection {
  background: #496084;
  color: white;
}
.container {
  width: min(80rem,calc(100% - 7rem));
  margin-inline: auto;
}
.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 1.3125rem;
  height: 1.3125rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-button {
  border: 0;
  background: transparent;
  width: 2.625rem;
  height: 2.625rem;
  display: grid;
  place-items: center;
  border-radius: 0.625rem;
}
.icon-button:hover {
  background: rgba(255,255,255,.08);
}
.rotate {
  transform: rotate(180deg);
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1.25rem;
  top: -3.75rem;
  background: var(--cyan);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
}
.skip-link:focus {
  top: 0.9375rem;
}
.gradient-text {
  background: linear-gradient(100deg,#57e7e7 0%,#70cfed 38%,#bd93ff 95%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-cyan {
  color: var(--cyan);
}
.eyebrow {
  font-size: 0.625rem;
  letter-spacing: .145em;
  font-weight: 650;
  text-transform: uppercase;
  color: var(--cyan);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.micro-label {
  font-size: 0.625rem;
  letter-spacing: .115em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.status-dot {
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0.75rem #50dbc244;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8125rem;
  border: 1px solid transparent;
  min-height: 3.0625rem;
  padding: 0.75rem 1.375rem;
  border-radius: 0.5625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  transition: background .2s,transform .2s,border-color .2s,box-shadow .2s;
}
.button:hover {
  transform: translateY(-0.125rem);
}
.button-primary {
  color: #091623;
  background: linear-gradient(115deg,#64e5dc,#58d4ea);
  box-shadow: 0 0.25rem 1.625rem #4ce2df10;
}
.button-primary:hover {
  box-shadow: 0 0.3125rem 1.75rem #4ce2df28;
  background: #9df4ec;
}
.button-outline {
  border-color: #394358;
  background: #ffffff03;
}
.button-outline:hover {
  border-color: #79dce19c;
  background: #ffffff08;
}
.button-small {
  font-size: 0.6875rem;
  min-height: 2.4375rem;
  padding: 0.625rem 0.875rem;
}
.button-small .icon {
  width: 1rem;
  height: 1rem;
}
.button-text {
  background: none;
  padding-inline: 0.75rem;
  color: #d4dded;
}
.button-text:hover {
  color: var(--cyan);
}
.button-text .icon {
  color: var(--cyan);
  width: 1.0625rem;
  height: 1.0625rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 600;
}
.text-link:hover .icon {
  transform: translateX(0.1875rem);
}
.text-link .icon {
  width: 1.0625rem;
  height: 1.0625rem;
  transition: transform .2s;
}
/* Identity and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0a1222ed;
  border-bottom: 1px solid #ffffff0a;
  backdrop-filter: blur(1rem);
}
.nav-bar {
  height: 5.4375rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.brand-mark {
  width: 2.6875rem;
  height: 2.6875rem;
}
.brand-name {
  font-size: 1.4375rem;
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 550;
}
.brand-name>span {
  font-weight: 650;
}
.parent-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-left: 1.3125rem;
  border-left: 1px solid #394255;
  line-height: 1;
  margin-left: 0.1875rem;
}
.parent-brand>span {
  font-size: 0.625rem;
  color: var(--subtle);
}
.parent-brand img {
  width: 5.0625rem;
  height: 1.3125rem;
  opacity: .88;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8125rem;
  margin-left: auto;
}
.nav-links>a {
  font-size: 0.6875rem;
  color: #bbc4d5;
  white-space: nowrap;
}
.nav-links>a:hover {
  color: white;
}
.menu-toggle {
  display: none;
  margin-left: auto;
}
/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 5.3125rem;
}
/* Full-bleed glow. An inset left edge clips the gradient into a visible seam.
   Anchor it to the section's left edge at every responsive layout size.
   The isolated hero keeps both decorative glows behind its content. */
.hero-glow {
  position: absolute;
  z-index: -1;
  inset: -11.25rem -9.375rem 0 0;
  background: radial-gradient(ellipse at 80% 36%,#783cf729 0%,transparent 54%),radial-gradient(ellipse at 32% 62%,#28aaa012 0%,transparent 54%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.14fr;
  gap: 2.625rem;
  align-items: center;
  padding-bottom: 4.25rem;
}
.hero-copy {
  min-width: 0;
  padding: 0.5625rem 0 1.125rem;
}
.hero h1 {
  font-size: clamp(3.25rem,5.15vw,4.75rem);
  letter-spacing: -.065em;
  line-height: 1.03;
  margin-bottom: 1.5625rem;
}
.hero h1>span {
  white-space: nowrap;
}
.hero .eyebrow {
  font-size: 0.5625rem;
  letter-spacing: .105em;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
.hero-description {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: #d4dfef;
  letter-spacing: -.02em;
  margin-bottom: 0.875rem;
}
.hero-detail {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 27.5rem;
  color: #9cadc4;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.875rem;
}
.hero-meta {
  font-size: 0.5625rem;
  letter-spacing: .025em;
  color: #798ba7;
  margin-top: 1.375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-meta>span {
  color: #52667c;
}
.hero-product {
  position: relative;
  min-width: 0;
  padding-top: 0.75rem;
}
.product-halo {
  position: absolute;
  inset: -5rem -5rem -0.9375rem;
  background: radial-gradient(ellipse,#393b722a 10%,#4542601f 42%,transparent 68%);
  z-index: -1;
}
.product-window {
  border: 1px solid #65739044;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #0d1929;
  box-shadow: 0 1.75rem 4.0625rem #0000004d,0 0 4.0625rem #867af00b;
  transform: perspective(112.5rem) rotateY(-3deg) rotateX(2deg);
  transition: transform .4s;
}
.product-window:hover {
  transform: perspective(112.5rem) rotateY(0) rotateX(0);
}
.window-top {
  height: 2.1875rem;
  padding: 0 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  border-bottom: 1px solid #ffffff0b;
  background: linear-gradient(100deg,#172236,#1c2138);
}
.window-id {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.5625rem;
  color: #d8e2f2;
}
.window-id img {
  width: 1.25rem;
  height: 1.25rem;
}
.window-project {
  font-family: ui-monospace,Consolas,monospace;
  font-size: 0.5rem;
  color: #8d9db4;
  margin-left: auto;
}
.window-dot {
  height: 0.3125rem;
  width: 0.3125rem;
  background: #54dabe;
  border-radius: 50%;
}
.screenshot-open {
  display: block;
  border: 0;
  padding: 0;
  position: relative;
  background: #0b1521;
  width: 100%;
  overflow: hidden;
}
.screenshot-open img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: contain;
}
.enlarge-label {
  position: absolute;
  bottom: 0.8125rem;
  right: 0.875rem;
  border: 1px solid #97c3d544;
  background: #14283aeb;
  color: #e6f4ff;
  font-size: 0.5625rem;
  display: flex;
  gap: 0.375rem;
  align-items: center;
  padding: 0.375rem 0.5625rem;
  border-radius: 0.3125rem;
  opacity: 0;
  transition: opacity .2s;
}
.enlarge-label .icon {
  width: 0.875rem;
  height: 0.875rem;
}
.screenshot-open:hover .enlarge-label,.screenshot-open:focus-visible .enlarge-label {
  opacity: 1;
}
.view-tabs {
  display: flex;
  justify-content: center;
  gap: 1.625rem;
  min-height: 2.75rem;
  border-top: 1px solid #ffffff0a;
}
.view-tab {
  font-size: 0.5625rem;
  border: 0;
  border-bottom: 0.125rem solid transparent;
  color: #8d9ab3;
  background: transparent;
  padding: 0.8125rem 0.125rem 0.625rem;
}
.view-tab.active {
  color: var(--cyan);
  border-color: var(--cyan);
}
.view-tab:hover {
  color: white;
}
.view-caption {
  font-size: 0.5625rem;
  text-align: center;
  line-height: 1.5;
  margin-top: 0.9375rem;
  color: #8293ad;
  min-height: 1.75rem;
  padding-inline: 0.625rem;
}
.handoff-card {
  margin: 0.9375rem 1.25rem 0 2.9375rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(110deg,#122839fa,#1b2440fa);
  border: 1px solid #4672825c;
  border-radius: 0.5625rem;
  padding: 0.8125rem 1rem;
  box-shadow: 0 0.4375rem 1.875rem #0000001f;
}
.handoff-icon {
  height: 2.0625rem;
  width: 2.0625rem;
  border: 1px solid #6cc8cb38;
  border-radius: 0.5rem;
  display: grid;
  place-items: center;
  background: #34ddc909;
  color: var(--cyan);
}
.handoff-icon .icon {
  width: 1.0625rem;
  height: 1.0625rem;
}
.handoff-card .micro-label {
  font-size: 0.5rem;
  display: block;
  color: #8499b2;
  letter-spacing: .13em;
  margin-bottom: 1px;
}
.handoff-card strong {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: -.01em;
}
.handoff-arrow {
  color: var(--cyan);
  margin-left: auto;
  width: 1.0625rem;
  height: 1.0625rem;
}
.benefit-line {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #ffffff0b;
  border-bottom: 1px solid #ffffff0b;
  padding-block: 1.625rem;
}
.benefit-line>div {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  color: #b5c1d5;
  font-size: 0.625rem;
  line-height: 1.3;
  border-right: 1px solid #ffffff0b;
}
.benefit-line>div:first-child {
  justify-content: flex-start;
}
.benefit-line>div:last-child {
  border-right: 0;
  justify-content: flex-end;
}
.benefit-line .icon {
  color: #82cbd0;
  width: 1.0625rem;
  height: 1.0625rem;
}
/* Layout and workflow */
.section {
  padding: 6.25rem 0;
}
.section h2 {
  font-size: 2.6875rem;
  font-weight: 550;
  line-height: 1.1;
}
.section-heading {
  margin-bottom: 2.5rem;
}
.two-col-heading {
  display: grid;
  grid-template-columns: 1.22fr 1fr;
  gap: 6.25rem;
  align-items: end;
}
.section-intro {
  font-size: 0.875rem;
  line-height: 1.85;
  max-width: 24.6875rem;
  padding-bottom: 0.25rem;
}
.workflow-rail {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line);
  border-radius: 0.8125rem;
  overflow: hidden;
  background: #0d1829;
}
.workflow-step {
  position: relative;
  padding: 1.75rem 1.875rem 1.6875rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.workflow-step:last-child {
  border: 0;
}
.workflow-step.featured {
  background: linear-gradient(135deg,#12343855,#17263d33);
}
.step-index {
  position: absolute;
  right: 1.5625rem;
  top: 1.375rem;
  font-size: 0.625rem;
  color: #57728e;
  font-family: ui-monospace,Consolas,monospace;
}
.workflow-name {
  color: #b6c3d8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 550;
  min-height: 1.625rem;
  margin-bottom: 2.0625rem;
}
.workflow-name img {
  height: 1.375rem;
  width: 1.375rem;
}
.featured .workflow-name {
  color: var(--cyan);
}
.workflow-step h3 {
  font-size: 1.375rem;
  margin-bottom: 0.9375rem;
}
.workflow-step p {
  font-size: 0.75rem;
  line-height: 1.85;
  flex-grow: 1;
  margin-bottom: 1.5625rem;
  max-width: 18.4375rem;
}
.step-tag {
  font-size: 0.5625rem;
  color: #81a2b9;
  letter-spacing: .025em;
  border-top: 1px solid #ffffff0b;
  padding-top: 0.9375rem;
}
.workflow-foot {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6.25rem;
  align-items: start;
  margin-top: 1.75rem;
}
.workflow-foot>p {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: -.015em;
}
.workflow-foot>p strong {
  color: #d8e5f5;
  font-weight: 500;
}
.transfer-details {
  padding-top: 0.25rem;
}
.transfer-details summary {
  font-size: 0.6875rem;
  color: #9eafc8;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}
.transfer-details summary span {
  color: #78d1d8;
}
.transfer-details p {
  padding-top: 0.9375rem;
  font-size: 0.6875rem;
  line-height: 1.8;
  color: #8fa2bd;
}
.transfer-details[open] summary span {
  transform: rotate(45deg);
}
/* Render illustration */
.vst-section {
  background: linear-gradient(115deg,#0f1a2c,#0b1426);
  border-block: 1px solid #ffffff08;
}
.split-layout {
  display: grid;
  grid-template-columns: .96fr 1fr;
  gap: 5.9375rem;
  align-items: center;
}
.section-copy h2 {
  margin-bottom: 1.6875rem;
  font-size: 2.6875rem;
  line-height: 1.13;
}
.section-copy>p:not(.eyebrow) {
  font-size: 0.8125rem;
  line-height: 1.9;
  max-width: 26.4375rem;
  margin-bottom: 1.1875rem;
}
.inline-proof {
  margin-top: 1.5625rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  color: #d4e1ee;
  font-size: 0.625rem;
}
.inline-proof .icon {
  color: var(--teal);
  width: 0.9375rem;
  height: 0.9375rem;
  margin-top: 1px;
}
.render-demo {
  border: 1px solid #3a496359;
  border-radius: 0.875rem;
  background: linear-gradient(150deg,#111f33,#131c30);
  padding: 1.5625rem 1.625rem 1.0625rem;
  box-shadow: 0 1.125rem 3.75rem #05091040;
}
.demo-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 1.625rem;
}
.demo-top .micro-label {
  font-size: 0.5625rem;
  color: #c0cfdf;
}
.tiny-pill {
  border: 1px solid #6b76943b;
  color: #8396b1;
  padding: 0.1875rem 0.4375rem;
  border-radius: 0.25rem;
  font-size: 0.5rem;
  letter-spacing: .01em;
}
.render-phase {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  column-gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.8125rem;
}
.render-phase>span {
  font-size: 0.5625rem;
  color: #4ecdd6;
  grid-row: 1/3;
  align-self: start;
  margin-top: 0.1875rem;
  font-family: ui-monospace,Consolas,monospace;
}
.render-phase>p {
  font-size: 0.75rem;
  color: #d7e4f3;
  font-weight: 500;
  line-height: 1.6;
}
.render-phase>small {
  font-size: 0.5625rem;
  color: #7b8da6;
}
.clip-row {
  display: flex;
  gap: 0.375rem;
  padding-left: 1.6875rem;
}
.midi-clip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 3.25rem;
  border-radius: 0.3125rem;
  overflow: hidden;
  border: 1px solid currentColor;
  background: #7b57d325;
  color: #b994f2;
}
.midi-clip b {
  position: absolute;
  top: 0.25rem;
  left: 0.4375rem;
  font-family: ui-monospace,Consolas,monospace;
  font-weight: 500;
  font-size: 0.5625rem;
}
.midi-clip i {
  position: absolute;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: currentColor;
  width: 22%;
  opacity: .7;
  left: 10%;
  top: 62%;
}
.midi-clip i:nth-of-type(2) {
  left: 33%;
  top: 53%;
}
.midi-clip i:nth-of-type(3) {
  left: 59%;
  top: 69%;
}
.midi-clip i:nth-of-type(4) {
  left: 76%;
  top: 60%;
  width: 15%;
}
.clip-b {
  color: #70d2ea;
  background: #34aecd18;
}
.clip-c {
  color: #74d6b4;
  background: #43c4881a;
}
.clip-edited {
  color: #e9b873;
  background: #c581231f;
}
.render-connector {
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-left: 1.6875rem;
}
.render-connector span {
  width: 3.4375rem;
  height: 1px;
  background: linear-gradient(90deg,transparent,#43516e);
}
.render-connector span:last-child {
  transform: rotate(180deg);
}
.render-connector .icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #8d9fbd;
}
.render-output {
  padding-left: 1.6875rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 2.8125rem;
  align-content: center;
}
.audio-asset {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  border: 1px solid #b994f24d;
  border-radius: 0.375rem;
  padding: 0.625rem 0.8125rem;
  font-size: 0.625rem;
  color: #bb9be9;
  background: #9472d513;
  font-family: ui-monospace,Consolas,monospace;
}
.audio-asset .icon {
  width: 1.125rem;
  height: 1.125rem;
}
.asset-b {
  color: #81d3ee;
  border-color: #5fafd149;
  background: #3aaece0a;
}
.asset-c {
  color: #86d8bd;
  border-color: #59b59649;
  background: #41c3930a;
}
.asset-edited {
  color: #e9b873;
  border-color: #e9b87349;
  background: #c5812314;
}
.render-total {
  margin: 1.5625rem 0 1.1875rem 1.6875rem;
  padding: 0.9375rem 0 0;
  border-top: 1px solid #ffffff0b;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}
.render-total strong {
  font-size: 0.875rem;
  letter-spacing: -.025em;
  font-weight: 550;
  color: #dceafa;
}
.render-total>span {
  font-size: 0.5625rem;
  color: #7f96b0;
}
.demo-change {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #42daca08;
  color: #9de6db;
  border: 1px solid #42daca24;
  width: 100%;
  padding: 0.75rem 0.875rem;
  border-radius: 0.375rem;
  text-align: left;
  font-size: 0.625rem;
}
.demo-change .icon {
  width: 1rem;
  height: 1rem;
}
.demo-change .icon:last-child {
  margin-left: auto;
}
.demo-change:hover {
  background: #42daca15;
  border-color: #42daca60;
}
.demo-footnote {
  font-size: 0.5rem;
  line-height: 1.65;
  color: #71829d;
  margin: 0.75rem 0.1875rem 0;
}
/* Instruments */
.instrument-section .two-col-heading {
  grid-template-columns: 1.2fr .8fr;
  gap: 4.0625rem;
}
.instrument-section h2 {
  font-size: 2.625rem;
}
.instrument-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.375rem;
}
.instrument-card {
  background: linear-gradient(150deg,#141c35,#0e1b2c);
  border: 1px solid #37445d;
  border-radius: 0.875rem;
  overflow: hidden;
  padding: 1.6875rem 1.8125rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sampler-card {
  background: linear-gradient(150deg,#11293188,#0e1b2c);
  border-color: #2b464f;
}
.instrument-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.4375rem;
}
.instrument-header .micro-label {
  font-size: 0.5rem;
  color: #b3a4d4;
  letter-spacing: .11em;
}
.sampler-card .instrument-header .micro-label {
  color: #91c7c7;
}
.instrument-badge {
  font-size: 0.5rem;
  color: #a1b7c7;
  padding: 0.25rem 0.375rem;
  border: 1px solid #5b718731;
  border-radius: 0.25rem;
  white-space: nowrap;
}
.instrument-card h3 {
  font-size: 1.875rem;
  font-weight: 550;
  line-height: 1.12;
  margin-bottom: 1.0625rem;
}
.instrument-card>p {
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 29.0625rem;
  margin-bottom: 1.6875rem;
  min-height: 4.125rem;
}
.instrument-image {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-grow: 1;
  background: transparent;
  width: 100%;
  padding: 0;
  border: 0;
  min-height: 18.375rem;
}
.instrument-image img {
  height: 18.375rem;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  object-position: top;
  border: 1px solid #54728b40;
  border-radius: 0.375rem;
  box-shadow: 0 0.875rem 1.5625rem #00000029;
}
.sampler-card .instrument-image {
  padding-top: 1rem;
}
.sampler-card .instrument-image img {
  width: 100%;
  height: auto;
  max-height: 17.8125rem;
}
.image-explore {
  position: absolute;
  bottom: 0.75rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #102939f0;
  border: 1px solid #68b4c453;
  border-radius: 0.3125rem;
  padding: 0.4375rem 0.625rem;
  font-size: 0.5625rem;
  color: #d3f7f5;
  opacity: 0;
  transition: opacity .2s;
}
.image-explore .icon {
  width: 0.9375rem;
  height: 0.9375rem;
}
.instrument-image:hover .image-explore,.instrument-image:focus-visible .image-explore {
  opacity: 1;
}
.instrument-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.125rem;
  margin-top: 1.4375rem;
  font-size: 0.5rem;
  color: #7e95b2;
  line-height: 1.5;
}
.two-paths {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.625rem;
  padding-top: 2rem;
  font-size: 0.625rem;
}
.two-paths>div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.two-paths .icon {
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--cyan);
}
.path-type {
  color: #8298b6;
}
.two-paths strong {
  font-weight: 450;
  color: #d4deef;
}
.path-divider {
  width: 1px;
  height: 1.125rem;
  background: var(--line);
}
.two-paths>p {
  width: 100%;
  text-align: center;
  color: #7384a0;
  font-size: 0.625rem;
  padding-top: 0.125rem;
}
/* Unreal architecture */
.unreal-section {
  padding-top: 0;
}
.unreal-panel {
  position: relative;
  background: radial-gradient(ellipse at 80% 40%,#26415944,transparent 60%),linear-gradient(120deg,#102037,#111c33);
  border: 1px solid #34507566;
  border-radius: 1rem;
  padding: 3rem 2.8125rem 1.625rem;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 1.5625rem 4.6875rem;
}
.unreal-copy .eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.5625rem;
}
.unreal-copy h2 {
  font-size: 2.9375rem;
  margin-bottom: 1.4375rem;
}
.unreal-copy>p:not(.eyebrow) {
  font-size: 0.8125rem;
  line-height: 1.85;
  max-width: 24.5rem;
  margin-bottom: 1.0625rem;
}
.unreal-copy .text-link {
  margin-top: 0.5rem;
  font-size: 0.625rem;
}
.engine-diagram {
  border: 1px solid #4760785c;
  background: linear-gradient(160deg,#172b414f,#101d31aa);
  border-radius: 0.75rem;
  padding: 1.25rem 1.375rem;
  align-self: center;
}
.engine-top {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.5625rem;
  letter-spacing: .11em;
  color: #abbdce;
  margin-bottom: 1.375rem;
}
.engine-top .icon {
  color: #8dacc6;
  width: 1.0625rem;
  height: 1.0625rem;
}
.engine-live-dot {
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #48d7b8;
  margin-left: auto;
}
.engine-node {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border: 1px solid #405d7766;
  border-radius: 0.4375rem;
  padding: 0.875rem;
  background: #0f1c2e85;
}
.node-index {
  font-family: ui-monospace,Consolas,monospace;
  font-size: 0.75rem;
  color: #67879e;
  padding-inline: 0.4375rem;
}
.engine-node>div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.engine-node strong {
  font-size: 0.75rem;
  font-weight: 500;
  color: #d7e4f1;
}
.engine-node>div>span {
  font-size: 0.5625rem;
  color: #7490a8;
}
.engine-node>.icon {
  color: #7899b1;
  margin-left: auto;
  width: 1.0625rem;
  height: 1.0625rem;
}
.scorebraid-node {
  background: #2b637227;
  border-color: #55cec84d;
}
.scorebraid-node img {
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
}
.node-connector {
  height: 1.0625rem;
  width: 1px;
  background: linear-gradient(#447689,#397781);
  margin-left: 50%;
}
.engine-audio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6875rem;
}
.engine-audio>div {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.125rem 0.5rem;
  border: 1px solid #425e7849;
  background: #0c1b2d91;
  padding: 0.875rem 0.75rem;
  border-radius: 0.4375rem;
}
.engine-audio .icon {
  grid-row: 1/3;
  align-self: center;
  color: #7dd0ce;
  width: 1.125rem;
  height: 1.125rem;
}
.engine-audio strong {
  font-size: 0.6875rem;
  font-weight: 500;
}
.engine-audio span {
  font-size: 0.5rem;
  color: #7690a9;
}
.engine-bottom {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  font-size: 0.5rem;
  color: #95b2bc;
  flex-wrap: wrap;
  margin-top: 1.125rem;
}
.engine-bottom .status-dot {
  height: 0.25rem;
  width: 0.25rem;
}
.engine-bottom>span:last-child {
  margin-left: auto;
  color: #637c96;
  font-size: 0.4375rem;
}
.technical-notes {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff0a;
  padding-top: 1.25rem;
}
.technical-notes summary {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #95afc8;
  font-size: 0.625rem;
}
.technical-notes summary>span {
  font-size: 0.875rem;
}
.technical-notes[open] summary>span {
  transform: rotate(45deg);
}
.technical-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.8125rem;
  padding-top: 1.25rem;
}
.technical-body p {
  font-size: 0.6875rem;
  line-height: 1.8;
  color: #8fa3bd;
}
.source-links {
  grid-column: 1/-1;
  display: flex;
  gap: 1.5625rem;
  flex-wrap: wrap;
  font-size: 0.5625rem;
  color: #95dbde;
}
.source-links a:hover {
  text-decoration: underline;
}
/* FAQ, closing, footer */
.faq-section {
  padding-top: 0.25rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 7.1875rem;
}
.faq-grid .eyebrow {
  margin-bottom: 1.4375rem;
}
.faq-grid h2 {
  font-size: 2.6875rem;
  margin-bottom: 1.625rem;
}
.faq-grid>div>p:not(.eyebrow) {
  font-size: 0.8125rem;
  line-height: 1.9;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.125rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #d5dfef;
  line-height: 1.5;
  padding: 1.25rem 0;
}
.faq-list summary>span {
  font-size: 1.25rem;
  line-height: 1;
  color: #8aa0b8;
  font-weight: 300;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-list details[open] summary>span {
  transform: rotate(45deg);
  color: var(--cyan);
}
.faq-list details>p {
  font-size: 0.6875rem;
  line-height: 1.85;
  padding: 0 1.75rem 1.375rem 0;
  color: #8fa1bb;
}
summary::-webkit-details-marker {
  display: none;
}
.closing-section {
  padding: 4.6875rem 0 5.1875rem;
  text-align: center;
  border-block: 1px solid #ffffff09;
  background: radial-gradient(ellipse at 50% 65%,#523b6b2f,transparent 66%),radial-gradient(ellipse at 47% 120%,#26748120,transparent 60%),#0b1426;
  position: relative;
  overflow: hidden;
}
.closing-section::before {
  content: "";
  position: absolute;
  width: 36.25rem;
  height: 36.25rem;
  border: 1px solid #525b7a14;
  left: calc(50% - 18.125rem);
  top: 1.25rem;
  border-radius: 50%;
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
}
.closing-mark {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.375rem;
}
.closing-inner>.eyebrow {
  justify-content: center;
  font-size: 0.5rem;
  letter-spacing: .125em;
  margin-bottom: 1.1875rem;
  color: #9dafc7;
}
.closing-inner>h2 {
  font-size: 3.25rem;
  line-height: 1.1;
  font-weight: 550;
  letter-spacing: -.05em;
  margin-bottom: 1.75rem;
}
.closing-sub {
  font-size: 0.625rem;
  margin-top: 1.25rem;
  color: #8092af;
}
.site-footer {
  padding: 2.625rem 0 1.5rem;
  background: #080f1d;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  justify-content: space-between;
  padding-bottom: 2.1875rem;
}
.footer-brand .brand-mark {
  width: 2.375rem;
  height: 2.375rem;
}
.footer-brand .brand-name {
  font-size: 1.3125rem;
}
.footer-top>div>p {
  font-size: 0.625rem;
  color: #7187a3;
  margin-top: 0.625rem;
}
.footer-top nav {
  display: flex;
  gap: 1.5625rem;
  padding-top: 0.5625rem;
  font-size: 0.625rem;
  color: #8fa0ba;
}
.footer-top nav a:hover {
  color: var(--cyan);
}
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-company>span {
  font-size: 0.5rem;
  letter-spacing: .145em;
  color: #6c819e;
}
.footer-company img {
  width: 8.125rem;
  height: 2.125rem;
  object-fit: contain;
}
.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid #ffffff08;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  color: #566b87;
  font-size: 0.5rem;
}
/* Keyboard-accessible product tour */
.tour-dialog {
  width: min(67.5rem,calc(100% - 3rem));
  max-height: calc(100dvh - 3rem);
  overflow: auto;
  border: 1px solid #596a806b;
  border-radius: 0.8125rem;
  background: #0d1829;
  color: var(--ink);
  padding: 0;
  box-shadow: 0 1.875rem 8.75rem #000000b3;
  overscroll-behavior: contain;
}
.tour-dialog::backdrop {
  background: #050a16db;
  backdrop-filter: blur(0.5625rem);
}
body.dialog-open {
  overflow: hidden;
}
.tour-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1.125rem 0.625rem 1.5rem;
  position: sticky;
  top: 0;
  background: #0d1829f0;
  z-index: 1;
  border-bottom: 1px solid var(--line);
}
.tour-top .micro-label {
  font-size: 0.625rem;
}
.tour-top .icon-button {
  width: 2.125rem;
  height: 2.125rem;
}
.tour-dialog>img {
  display: block;
  max-height: 52vh;
  max-height: 52dvh;
  width: 100%;
  object-fit: contain;
  background: #08101b;
}
.tour-copy {
  padding: 1.4375rem 1.6875rem 1.125rem;
  display: flex;
  justify-content: space-between;
  gap: 2.1875rem;
}
.tour-copy h2 {
  font-size: 1.625rem;
  line-height: 1.2;
  letter-spacing: -.035em;
  margin-bottom: 0.5625rem;
}
.tour-copy p {
  font-size: 0.75rem;
  line-height: 1.8;
  max-width: 45.625rem;
}
.tour-count {
  font-size: 0.625rem;
  font-family: ui-monospace,Consolas,monospace;
  color: #6c859f;
  padding-top: 0.4375rem;
  white-space: nowrap;
}
.tour-bottom {
  padding: 0.3125rem 1.6875rem 1.4375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}
.tour-bottom .button {
  font-size: 0.6875rem;
  min-height: 2.5625rem;
  padding: 0.5625rem 0.9375rem;
}
.tour-bottom .icon {
  width: 1rem;
  height: 1rem;
}
.tour-dots {
  display: flex;
  gap: 0.5rem;
}
.tour-dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  padding: 0;
  border: 0;
  background: #354358;
}
.tour-dots button[aria-pressed="true"] {
  background: var(--cyan);
}
@media (min-width:1600px) {
  .container {
    width: 80rem;
  }
  .hero-grid {
    gap: 4.0625rem;
  }
  .hero h1 {
    font-size: 4.6875rem;
  }
}
@media (max-width:1200px) {
  .container {
    width: calc(100% - 4.5rem);
  }
  .parent-brand {
    display: none;
  }
  .nav-links {
    gap: 1.5625rem;
  }
  .hero {
    padding-top: 3.75rem;
  }
  .hero-grid {
    gap: 1.75rem;
    grid-template-columns: 1fr 1.1fr;
  }
  .hero h1 {
    font-size: 3.8125rem;
  }
  .hero .eyebrow {
    font-size: 0.5rem;
  }
  .hero-description {
    font-size: 1.0625rem;
  }
  .hero-detail {
    font-size: 0.75rem;
  }
  .hero-meta {
    font-size: 0.5rem;
    gap: 0.5rem;
  }
  .hero-actions {
    gap: 0.25rem;
  }
  .hero-actions .button {
    font-size: 0.6875rem;
    padding-inline: 1rem;
  }
  .handoff-card {
    margin-left: 1.375rem;
    margin-right: 0.5rem;
  }
  .handoff-card strong {
    font-size: 0.625rem;
  }
  .section {
    padding-block: 5rem;
  }
  .section h2,.section-copy h2 {
    font-size: 2.375rem;
  }
  .two-col-heading {
    gap: 4.0625rem;
  }
  .split-layout {
    gap: 4.0625rem;
  }
  .instrument-section .two-col-heading {
    gap: 2.5rem;
  }
  .instrument-section h2 {
    font-size: 2.375rem;
  }
  .instrument-card {
    padding: 1.5rem;
  }
  .instrument-card h3 {
    font-size: 1.6875rem;
  }
  .instrument-header {
    gap: 0.375rem;
  }
  .instrument-header .micro-label {
    font-size: 0.4375rem;
  }
  .instrument-badge {
    font-size: 0.4375rem;
  }
  .instrument-card>p {
    min-height: 5.375rem;
  }
  .instrument-image {
    min-height: 17.0625rem;
  }
  .instrument-image img {
    height: 17.0625rem;
  }
  .instrument-caption {
    gap: 0.75rem;
    font-size: 0.4375rem;
  }
  .unreal-section {
    padding-top: 0;
  }
  .unreal-panel {
    gap: 1.5625rem 2.5rem;
    padding: 2.3125rem 2rem 1.5rem;
  }
  .engine-diagram {
    padding: 1.125rem;
  }
  .faq-section {
    padding-top: 0.3125rem;
  }
  .faq-grid {
    gap: 4.6875rem;
  }
  .footer-top nav {
    gap: 1.1875rem;
  }
}
@media (max-width:960px) {
  .container {
    width: calc(100% - 3rem);
  }
  .nav-bar {
    height: 4.6875rem;
  }
  .nav-links {
    gap: 1.375rem;
  }
  .nav-links>a {
    font-size: 0.625rem;
  }
  .brand-name {
    font-size: 1.375rem;
  }
  .hero {
    padding-top: 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding-bottom: 2.1875rem;
  }
  .hero-copy {
    max-width: 40rem;
    text-align: center;
    margin-inline: auto;
  }
  .hero-copy>.eyebrow {
    justify-content: center;
    font-size: 0.625rem;
    white-space: normal;
  }
  .hero h1 {
    font-size: 4.5625rem;
  }
  .hero-description {
    font-size: 1.25rem;
  }
  .hero-detail {
    font-size: 0.875rem;
    max-width: 35.625rem;
  }
  .hero-actions {
    justify-content: center;
    gap: 0.875rem;
  }
  .hero-actions .button {
    font-size: 0.75rem;
    padding-inline: 1.25rem;
  }
  .hero-meta {
    font-size: 0.5625rem;
    justify-content: center;
    gap: 0.75rem;
  }
  .hero-product {
    width: min(41.25rem,100%);
    margin-inline: auto;
    padding-top: 0;
  }
  .product-window {
    transform: none;
  }
  .product-window:hover {
    transform: none;
  }
  .handoff-card {
    margin: 0.5rem 2.375rem 0;
  }
  .view-caption {
    font-size: 0.625rem;
  }
  .benefit-line {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 0;
    padding-block: 1.6875rem;
  }
  .benefit-line>div {
    justify-content: flex-start !important;
    font-size: 0.6875rem;
    border-right: 0;
  }
  .benefit-line>div:nth-child(2n) {
    padding-left: 1.875rem;
    border-left: 1px solid #ffffff0b;
  }
  .section {
    padding-block: 4.375rem;
  }
  .two-col-heading {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .section h2,.instrument-section h2 {
    font-size: 2.125rem;
  }
  .section-intro {
    font-size: 0.75rem;
  }
  .workflow-step {
    padding: 1.4375rem 1.3125rem;
  }
  .workflow-step h3 {
    font-size: 1.25rem;
  }
  .workflow-step p {
    font-size: 0.6875rem;
  }
  .workflow-step .step-index {
    right: 1.125rem;
  }
  .workflow-foot {
    gap: 3.125rem;
  }
  .split-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.1875rem;
  }
  .section-copy>p:not(.eyebrow) {
    font-size: 0.75rem;
  }
  .render-demo {
    padding: 1.25rem 1.125rem 1rem;
  }
  .render-demo .micro-label {
    font-size: 0.5rem;
  }
  .render-output {
    gap: 0.375rem;
  }
  .audio-asset {
    padding: 0.5rem 0.5625rem;
    font-size: 0.5625rem;
    gap: 0.375rem;
  }
  .audio-asset .icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }
  .demo-change {
    font-size: 0.5625rem;
    padding: 0.6875rem 0.625rem;
  }
  .instrument-section .two-col-heading {
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
  }
  .instrument-card {
    padding: 1.25rem 1.1875rem;
  }
  .instrument-header {
    flex-wrap: wrap;
    margin-bottom: 1.125rem;
    min-height: 2.125rem;
  }
  .instrument-card h3 {
    font-size: 1.5rem;
  }
  .instrument-card>p {
    font-size: 0.6875rem;
    min-height: 5.125rem;
  }
  .instrument-image img {
    height: 15.5rem;
  }
  .instrument-image {
    min-height: 15.5rem;
  }
  .instrument-caption {
    gap: 0.5625rem;
  }
  .two-paths {
    font-size: 0.5625rem;
    gap: 0.75rem 1rem;
  }
  .two-paths>div {
    gap: 0.5rem;
  }
  .path-divider {
    display: none;
  }
  .unreal-section {
    padding-top: 0;
  }
  .unreal-panel {
    gap: 1.5625rem 2rem;
    padding: 2rem 1.625rem 1.25rem;
    grid-template-columns: .9fr 1fr;
  }
  .unreal-copy>p:not(.eyebrow) {
    font-size: 0.6875rem;
  }
  .unreal-copy .text-link {
    font-size: 0.5625rem;
  }
  .engine-node strong {
    font-size: 0.625rem;
  }
  .engine-node>div>span {
    font-size: 0.5rem;
  }
  .engine-node {
    padding: 0.6875rem;
    gap: 0.5625rem;
  }
  .engine-audio {
    gap: 0.5rem;
  }
  .engine-audio>div {
    padding: 0.6875rem 0.5rem;
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .engine-audio .icon {
    display: none;
  }
  .engine-audio strong {
    font-size: 0.625rem;
  }
  .engine-bottom>span:last-child {
    width: 100%;
    margin-left: 0;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-grid {
    gap: 3.125rem;
  }
  .footer-top {
    gap: 1.5625rem;
    flex-wrap: wrap;
  }
  .footer-top nav {
    font-size: 0.5625rem;
    gap: 0.9375rem;
  }
  .footer-company img {
    width: 6.25rem;
    height: 1.6875rem;
  }
}
@media (max-width:700px) {
  .container {
    width: calc(100% - 2.375rem);
  }
  html {
    scroll-padding-top: 5.5rem;
  }
  .nav-bar {
    height: 4.3125rem;
    gap: 0.75rem;
  }
  .brand-mark {
    width: 2.375rem;
    height: 2.375rem;
  }
  .brand-name {
    font-size: 1.3125rem;
  }
  .parent-brand {
    display: flex;
    margin-left: 0;
    padding-left: 0.75rem;
    gap: 0.4375rem;
  }
  .parent-brand img {
    width: 4.0625rem;
    height: 1.1875rem;
  }
  .parent-brand>span {
    font-size: 0.5rem;
  }
  .menu-toggle {
    display: grid;
  }
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.25rem;
    background: #0c1628f7;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(1.125rem);
    padding: 1.5625rem 1.375rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links>a {
    font-size: 0.8125rem;
    padding: 0.75rem 0.5rem;
  }
  .nav-links .button {
    margin-top: 0.75rem;
    justify-content: space-between;
    font-size: 0.75rem;
    min-height: 2.75rem;
  }
  .hero {
    padding-top: 2.625rem;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy>.eyebrow {
    font-size: 0.5rem;
    letter-spacing: .075em;
    gap: 0.5rem;
    margin-bottom: 1.375rem;
  }
  .hero h1 {
    font-size: clamp(2.8125rem,10.5vw,4.125rem);
    line-height: 1.07;
    margin-bottom: 1.4375rem;
  }
  .hero h1>span {
    white-space: normal;
  }
  .hero-description {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.0625rem;
  }
  .hero-detail {
    font-size: 0.75rem;
    line-height: 1.85;
    padding: 0 0.5625rem;
    max-width: 32.5rem;
    margin-inline: auto;
  }
  .hero-actions {
    gap: 0.25rem;
    margin-top: 1.5625rem;
    flex-wrap: wrap;
  }
  .hero-actions .button {
    font-size: 0.6875rem;
    padding-inline: 1rem;
    min-height: 2.8125rem;
  }
  .hero-actions .button-text {
    font-size: 0.625rem;
    padding-inline: 0.625rem;
    gap: 0.5rem;
  }
  .hero-meta {
    font-size: 0.4375rem;
    gap: 0.4375rem;
    margin-top: 1.25rem;
    white-space: nowrap;
  }
  .hero-grid {
    gap: 2.125rem;
    padding-bottom: 2rem;
  }
  .window-top {
    height: 1.9375rem;
    padding-inline: 0.5625rem;
  }
  .window-id {
    font-size: 0.5rem;
  }
  .window-id img {
    height: 1.125rem;
    width: 1.125rem;
  }
  .window-project {
    font-size: 0.4375rem;
  }
  .view-tabs {
    min-height: 2.4375rem;
    gap: 1.375rem;
  }
  .view-tab {
    padding-block: 0.625rem 0.5rem;
    font-size: 0.5rem;
  }
  .view-caption {
    font-size: 0.5rem;
    margin-top: 0.625rem;
    min-height: 0;
  }
  .handoff-card {
    margin: 0.9375rem 0.4375rem 0;
    padding: 0.75rem;
    gap: 0.5625rem;
  }
  .handoff-icon {
    width: 1.8125rem;
    height: 1.8125rem;
  }
  .handoff-card .micro-label {
    font-size: 0.375rem;
  }
  .handoff-card strong {
    font-size: 0.5625rem;
  }
  .handoff-arrow {
    width: 0.9375rem;
    height: 0.9375rem;
  }
  .benefit-line {
    gap: 1.375rem 0;
    padding-block: 1.5rem;
  }
  .benefit-line>div {
    font-size: 0.5rem;
    gap: 0.5625rem;
    line-height: 1.5;
  }
  .benefit-line>div:nth-child(2n) {
    padding-left: 1.0625rem;
  }
  .benefit-line .icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }
  .section {
    padding-block: 3.625rem;
  }
  .section .eyebrow {
    font-size: 0.5rem;
    letter-spacing: .12em;
    margin-bottom: 1.125rem;
  }
  .section h2,.section-copy h2,.instrument-section h2 {
    font-size: 2.125rem;
    line-height: 1.12;
  }
  .section-heading {
    margin-bottom: 1.75rem;
  }
  .two-col-heading,.instrument-section .two-col-heading {
    grid-template-columns: 1fr;
    gap: 1.1875rem;
  }
  .section-intro {
    font-size: 0.75rem;
    line-height: 1.85;
    max-width: 29.375rem;
  }
  .workflow-rail {
    grid-template-columns: 1fr;
  }
  .workflow-step {
    padding: 1.4375rem 1.5625rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .workflow-name {
    margin-bottom: 1.1875rem;
    font-size: 0.75rem;
  }
  .step-index {
    top: 1.5625rem;
    right: 1.375rem !important;
  }
  .workflow-step h3 {
    font-size: 1.4375rem;
  }
  .workflow-step p {
    font-size: 0.75rem;
    max-width: 100%;
    line-height: 1.85;
    margin-bottom: 1.1875rem;
  }
  .step-tag {
    font-size: 0.5rem;
    padding-top: 0.875rem;
  }
  .workflow-foot {
    grid-template-columns: 1fr;
    gap: 1.3125rem;
    margin-top: 1.5625rem;
  }
  .workflow-foot>p {
    font-size: 0.8125rem;
  }
  .transfer-details {
    border-top: 1px solid #ffffff0b;
    padding-top: 1.0625rem;
  }
  .transfer-details summary {
    font-size: 0.625rem;
  }
  .transfer-details p {
    font-size: 0.6875rem;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 1.6875rem;
  }
  .section-copy h2 {
    margin-bottom: 1.25rem;
  }
  .section-copy>p:not(.eyebrow) {
    font-size: 0.75rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .desktop-break {
    display: none;
  }
  .inline-proof {
    margin-top: 1.3125rem;
    font-size: 0.5625rem;
    gap: 0.5rem;
  }
  .render-demo {
    padding: 1.3125rem 1.25rem 1.0625rem;
  }
  .demo-top {
    margin-bottom: 1.375rem;
  }
  .demo-top .micro-label {
    font-size: 0.5rem;
  }
  .tiny-pill {
    font-size: 0.4375rem;
  }
  .render-phase>p {
    font-size: 0.6875rem;
  }
  .render-phase>small {
    font-size: 0.5rem;
  }
  .clip-row {
    gap: 0.3125rem;
    padding-left: 0;
  }
  .midi-clip {
    height: 3.0625rem;
  }
  .render-connector {
    margin-left: 0;
  }
  .render-output {
    padding-left: 0;
    gap: 0.5rem;
    min-height: 2.8125rem;
  }
  .audio-asset {
    padding: 0.625rem 0.8125rem;
    gap: 0.5rem;
    font-size: 0.5625rem;
  }
  .render-total {
    margin-left: 0;
    margin-top: 1.375rem;
  }
  .render-total strong {
    font-size: 0.8125rem;
  }
  .render-total>span {
    font-size: 0.5rem;
  }
  .demo-change {
    font-size: 0.5625rem;
    padding: 0.75rem;
  }
  .demo-footnote {
    font-size: 0.4375rem;
  }
  .instrument-grid {
    grid-template-columns: 1fr;
    gap: 1.125rem;
  }
  .instrument-card {
    padding: 1.4375rem 1.4375rem 1.1875rem;
  }
  .instrument-header {
    margin-bottom: 1.375rem;
    flex-wrap: nowrap;
    min-height: 0;
  }
  .instrument-header .micro-label {
    font-size: 0.4375rem;
    letter-spacing: .06em;
  }
  .instrument-badge {
    font-size: 0.4375rem;
  }
  .instrument-card h3 {
    font-size: 1.8125rem;
  }
  .instrument-card>p {
    font-size: 0.75rem;
    min-height: 0;
    margin-bottom: 1.5625rem;
  }
  .instrument-image {
    min-height: 0;
  }
  .instrument-image img {
    height: auto;
    width: auto;
    max-height: 20.9375rem;
    max-width: 100%;
    object-fit: contain;
  }
  .sampler-card .instrument-image {
    padding-top: 0;
  }
  .sampler-card .instrument-image img {
    max-height: none;
    width: 100%;
  }
  .instrument-caption {
    margin-top: 1.3125rem;
    font-size: 0.4375rem;
    gap: 0.8125rem;
  }
  .image-explore {
    opacity: 1;
    font-size: 0.5rem;
    bottom: 0.625rem;
    right: 0.3125rem;
  }
  .image-explore .icon {
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .two-paths {
    padding-top: 1.625rem;
    gap: 0.9375rem;
    font-size: 0.5625rem;
    justify-content: flex-start;
  }
  .two-paths>div {
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
    flex-wrap: nowrap;
  }
  .two-paths .icon {
    width: 0.8125rem;
    height: 0.8125rem;
  }
  .two-paths>p {
    text-align: left;
    font-size: 0.5625rem;
  }
  .unreal-section {
    padding-top: 0;
    padding-bottom: 3.625rem;
  }
  .unreal-panel {
    grid-template-columns: 1fr;
    padding: 1.875rem 1.4375rem 1.3125rem;
    gap: 1.8125rem;
  }
  .unreal-copy h2 {
    font-size: 2.4375rem;
  }
  .unreal-copy>p:not(.eyebrow) {
    font-size: 0.75rem;
    line-height: 1.85;
    max-width: 100%;
  }
  .unreal-copy .text-link {
    font-size: 0.625rem;
  }
  .engine-diagram {
    padding: 1.1875rem 1rem;
  }
  .engine-top {
    font-size: 0.5rem;
    margin-bottom: 1.125rem;
  }
  .engine-node {
    padding: 0.8125rem 0.6875rem;
    gap: 0.5625rem;
  }
  .engine-node strong {
    font-size: 0.6875rem;
  }
  .engine-node>div>span {
    font-size: 0.5rem;
  }
  .node-index {
    font-size: 0.6875rem;
  }
  .engine-audio>div {
    grid-template-columns: 1.125rem 1fr;
    padding: 0.75rem 0.5625rem;
    gap: 0.125rem 0.375rem;
  }
  .engine-audio .icon {
    display: block;
    width: 0.9375rem;
    height: 0.9375rem;
  }
  .engine-audio strong {
    font-size: 0.5625rem;
  }
  .engine-audio span {
    font-size: 0.4375rem;
  }
  .engine-bottom {
    font-size: 0.4375rem;
    gap: 0.375rem;
  }
  .engine-bottom>span:last-child {
    font-size: 0.375rem;
  }
  .technical-body {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }
  .technical-body p {
    font-size: 0.625rem;
  }
  .source-links {
    font-size: 0.5rem;
    gap: 0.75rem;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .faq-grid h2 {
    font-size: 2.125rem;
    margin-bottom: 1.125rem;
  }
  .faq-grid>div>p:not(.eyebrow) {
    font-size: 0.75rem;
  }
  .faq-list summary {
    font-size: 0.75rem;
    padding-block: 1.1875rem;
    gap: 0.875rem;
  }
  .faq-list details>p {
    font-size: 0.6875rem;
    padding-right: 0.625rem;
  }
  .closing-section {
    padding: 3.5rem 0;
  }
  .closing-mark {
    width: 3.375rem;
    height: 3.375rem;
    margin-bottom: 1.25rem;
  }
  .closing-inner>.eyebrow {
    font-size: 0.4375rem;
    letter-spacing: .075em;
  }
  .closing-inner>h2 {
    font-size: 2.25rem;
    line-height: 1.12;
  }
  .closing-inner>.button {
    font-size: 0.75rem;
  }
  .closing-sub {
    font-size: 0.5625rem;
  }
  .site-footer {
    padding: 1.875rem 0 1.3125rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.75rem 0.9375rem;
    padding-bottom: 1.6875rem;
  }
  .footer-brand .brand-name {
    font-size: 1.3125rem;
  }
  .footer-brand .brand-mark {
    width: 2.1875rem;
    height: 2.1875rem;
  }
  .footer-top>div>p {
    font-size: 0.5rem;
    margin-top: 0.625rem;
  }
  .footer-top nav {
    grid-row: 2;
    grid-column: 1/-1;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.5625rem;
    padding-top: 0;
  }
  .footer-company {
    gap: 0.3125rem;
  }
  .footer-company>span {
    font-size: 0.375rem;
  }
  .footer-company img {
    width: 5.375rem;
    height: 1.4375rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.4375rem;
    padding-top: 1.25rem;
  }
  .tour-dialog {
    width: calc(100% - 1.375rem);
    max-height: calc(100dvh - 1.5rem);
    border-radius: 0.625rem;
  }
  .tour-top {
    padding: 0.5625rem 0.75rem 0.5625rem 1.0625rem;
  }
  .tour-top .micro-label {
    font-size: 0.5625rem;
  }
  .tour-dialog>img {
    max-height: 45dvh;
  }
  .tour-copy {
    padding: 1.25rem 1.1875rem 1.0625rem;
    gap: 0.9375rem;
  }
  .tour-copy h2 {
    font-size: 1.4375rem;
  }
  .tour-copy p {
    font-size: 0.6875rem;
  }
  .tour-count {
    font-size: 0.5rem;
  }
  .tour-bottom {
    padding: 0 1.1875rem 1.25rem;
    gap: 0.625rem;
  }
  .tour-bottom .button {
    font-size: 0.625rem;
    padding: 0.5625rem 0.75rem;
    gap: 0.4375rem;
    min-height: 2.4375rem;
  }
  .tour-dots {
    gap: 0.375rem;
  }
  .tour-dots button {
    width: 0.375rem;
    height: 0.375rem;
  }
}
@media (max-width:370px) {
  .container {
    width: calc(100% - 1.875rem);
  }
  .parent-brand {
    display: none;
  }
  .hero h1 {
    font-size: 2.6875rem;
  }
  .hero .eyebrow {
    font-size: 0.4375rem;
  }
  .hero-meta {
    font-size: 0.375rem;
  }
  .hero-description {
    font-size: 0.9375rem;
  }
  .hero-actions .button {
    font-size: 0.625rem;
    padding-inline: 0.8125rem;
  }
  .hero-actions .button-text {
    font-size: 0.5625rem;
    padding-inline: 0.5625rem;
  }
  .benefit-line>div {
    font-size: 0.4375rem;
    gap: 0.4375rem;
  }
  .section h2,.instrument-section h2 {
    font-size: 1.875rem;
  }
  .instrument-card {
    padding: 1.375rem 1.125rem 1.125rem;
  }
  .instrument-header .micro-label {
    font-size: 0.375rem;
  }
  .instrument-card h3 {
    font-size: 1.6875rem;
  }
  .instrument-caption {
    font-size: 0.375rem;
    gap: 0.625rem;
  }
  .two-paths {
    font-size: 0.5rem;
  }
  .closing-inner>h2 {
    font-size: 2rem;
  }
  .tour-dots {
    display: none;
  }
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    transition: none !important;
    animation: none !important;
  }
  .product-window {
    transform: none;
  }
}
/* Give expanded disclosure symbols room when rotated; prevent edge overflow. */
.transfer-details summary,.technical-notes summary,.faq-list summary {
  padding-right: 0.4375rem;
}
/* Reading-size pass: the feature story stays comfortable outside large displays. */
@media (min-width:701px) {
  .nav-links>a {
    font-size: 0.75rem;
  }
  .button-small {
    font-size: 0.75rem;
  }
  .benefit-line>div {
    font-size: 0.6875rem;
  }
  .section-intro {
    font-size: 0.9375rem;
  }
  .workflow-step p {
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .step-tag {
    font-size: 0.625rem;
  }
  .section-copy>p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .instrument-card>p {
    font-size: 0.875rem;
    line-height: 1.85;
  }
  .unreal-copy>p:not(.eyebrow) {
    font-size: 0.875rem;
  }
  .faq-list summary {
    font-size: 0.875rem;
  }
  .faq-list details>p {
    font-size: 0.8125rem;
  }
  .transfer-details summary {
    font-size: 0.75rem;
  }
  .transfer-details p {
    font-size: 0.75rem;
  }
  .inline-proof {
    font-size: 0.6875rem;
  }
  .tour-copy p {
    font-size: 0.8125rem;
  }
  .footer-top nav {
    font-size: 0.6875rem;
  }
}
@media (max-width:700px) {
  .section-intro {
    font-size: 0.8125rem;
  }
  .workflow-step p {
    font-size: 0.8125rem;
  }
  .section-copy>p:not(.eyebrow) {
    font-size: 0.8125rem;
  }
  .instrument-card>p {
    font-size: 0.8125rem;
  }
  .unreal-copy>p:not(.eyebrow) {
    font-size: 0.8125rem;
  }
  .faq-list summary {
    font-size: 0.8125rem;
  }
  .faq-list details>p {
    font-size: 0.75rem;
  }
  .transfer-details p {
    font-size: 0.75rem;
  }
}
/* Closed beta section */
.beta-section {
  padding: 4.5rem 0 5.25rem;
  background: radial-gradient(circle at top left,#182349 0,#0c1427 38%,#0a1222 100%);
}
.beta-panel {
  display: grid;
  grid-template-columns: 1fr .96fr;
  gap: 2.75rem;
  align-items: start;
  padding: 2.125rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: linear-gradient(180deg,#101a30f2,#0d1528f3);
  box-shadow: 0 1.75rem 5rem #05091055;
}
.beta-copy .eyebrow {
  margin-bottom: 1rem;
}
.beta-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #d6e4f2;
  max-width: 40rem;
  margin: 1.5rem 0 1.75rem;
}
.beta-points {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0.875rem 1.125rem;
  margin-bottom: 1.5rem;
}
.beta-points>div {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  border: 1px solid #ffffff10;
  border-radius: 0.75rem;
  background: #ffffff04;
  color: #e5effa;
  font-size: 0.8125rem;
}
.beta-points .icon {
  width: 1rem;
  height: 1rem;
  color: var(--teal);
}
.beta-form {
  padding: 1.375rem;
  border: 1px solid #ffffff0f;
  border-radius: 1.125rem;
  background: linear-gradient(180deg,#121c33,#0f182e);
}
.beta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 0.875rem;
}
.beta-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #dbe8f5;
  font-size: 0.6875rem;
  letter-spacing: .02em;
}
.beta-form label>span {
  font-size: 0.6875rem;
  color: #a7bdd5;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.beta-form input,.beta-form textarea {
  width: 100%;
  border: 1px solid #ffffff14;
  border-radius: 0.75rem;
  background: #0b1427;
  color: #eef5ff;
  padding: 0.875rem 0.875rem;
  font: inherit;
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.beta-form input::placeholder,.beta-form textarea::placeholder {
  color: #6c8199;
}
.beta-form input:focus,.beta-form textarea:focus {
  border-color: #42daca66;
  box-shadow: 0 0 0 0.1875rem #42daca18;
  background: #0d172c;
}
.beta-message {
  margin-top: 0.875rem;
}
.beta-submit {
  margin-top: 1.125rem;
  width: 100%;
  justify-content: center;
}
.beta-note {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #8ca2ba;
}
@media (max-width:960px) {
  .beta-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.625rem;
  }
  .beta-intro {
    font-size: 0.875rem;
  }
  .beta-points>div {
    font-size: 0.75rem;
  }
}
@media (max-width:700px) {
  .beta-section {
    padding: 3.625rem 0 4rem;
  }
  .beta-panel {
    padding: 1.375rem;
    border-radius: 1.125rem;
    gap: 1.375rem;
  }
  .beta-intro {
    font-size: 0.75rem;
    margin: 1.125rem 0 1.375rem;
  }
  .beta-points {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 1.125rem;
  }
  .beta-points>div {
    font-size: 0.6875rem;
    padding: 0.6875rem 0.75rem;
  }
  .beta-form {
    padding: 1rem;
    border-radius: 0.875rem;
  }
  .beta-grid {
    grid-template-columns: 1fr;
  }
  .beta-form label {
    font-size: 0.625rem;
  }
  .beta-form label>span {
    font-size: 0.625rem;
  }
  .beta-form input,.beta-form textarea {
    padding: 0.75rem 0.75rem;
    border-radius: 0.625rem;
  }
  .beta-message {
    margin-top: 0.75rem;
  }
  .beta-note {
    font-size: 0.5625rem;
  }
}
/* Keep intrinsic form and grid dimensions inside the viewport at all scales. */
.beta-panel > *, .beta-grid > *, .beta-form {
  min-width: 0;
}
.beta-form input, .beta-form textarea {
  min-width: 0;
  max-width: 100%;
}
.beta-copy h2 {
  font-size: 2.6875rem;
  line-height: 1.12;
}
.beta-copy .closing-sub {
  max-width: 32rem;
  line-height: 1.8;
}
.beta-form textarea {
  resize: vertical;
}
.beta-form input:focus-visible, .beta-form textarea:focus-visible {
  outline: 0.125rem solid var(--cyan);
  outline-offset: 0.1875rem;
}
@media (max-width: 700px) {
  /* A label can wrap; a mobile field should never force sideways scrolling. */
  .hero-meta {
    flex-wrap: wrap;
    white-space: normal;
    row-gap: 0.375rem;
  }
  .hero .eyebrow {
    white-space: normal;
  }
  .hero-actions {
    row-gap: 0.625rem;
  }
  .beta-copy h2 {
    font-size: 2rem;
  }
  .beta-form input, .beta-form textarea {
    font-size: 1rem;
  }
  .view-tab {
    min-height: 2.75rem;
  }
}

/* DAW compatibility, manual handoff, and bridge requests.
 * All dimensions use the existing fluid root scale. No fixed-width desktop panel. */
.hero-daw-link {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: .875rem; color: var(--cyan); font-size: .75rem; font-weight: 550;
}
.hero-daw-link .icon, .step-check-link .icon { width: 1rem; height: 1rem; }
.hero-daw-link:hover { color: #b8f8f1; }
.step-check-link { display: flex; align-items: center; justify-content: space-between; color: var(--cyan); }
.daw-section {
  background: radial-gradient(ellipse at 80% 35%,#28406615,transparent 66%),#0b1526;
  border-top: 1px solid #ffffff08;
}
.daw-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 4.75rem; align-items: center; }
.daw-layout > *, .daw-request-body > *, .manual-routes > * { min-width: 0; }
.daw-copy h2 { font-size: 2.6875rem; line-height: 1.12; margin-bottom: 1.5rem; }
.daw-copy > p:not(.eyebrow) { font-size: .875rem; line-height: 1.85; max-width: 29rem; margin-bottom: 1.125rem; }
.daw-copy > p.daw-lead { color: #ddebf9; font-size: 1.0625rem; font-weight: 500; }
.daw-reassurance { display: flex; align-items: flex-start; gap: .7rem; margin-top: 1.75rem; }
.daw-reassurance > .icon { color: var(--teal); width: 1.125rem; height: 1.125rem; margin-top: .2rem; }
.daw-reassurance p { font-size: .875rem; line-height: 1.7; }
.daw-reassurance strong { color: #b3f0df; font-weight: 550; }
.daw-checker {
  padding: 1.625rem; border: 1px solid #38516c88; border-radius: 1rem;
  background: linear-gradient(145deg,#14243a,#0e192c); box-shadow: 0 1.125rem 3.75rem #040a1933;
}
.daw-checker-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.daw-checker-head .micro-label { color: #d3e4f3; font-size: .7rem; }
.daw-lineup-tag { border: 1px solid #6c819e55; border-radius: 99rem; padding: .25rem .6rem; color: #bdcbde; font-size: .625rem; white-space: nowrap; }
.daw-picker-label { color: #f0f6ff; font-size: 1rem; font-weight: 550; margin-bottom: .875rem; }
.daw-picker { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .625rem; }
.daw-choice {
  border: 1px solid #34465e; border-radius: .625rem; background: #0d192b;
  display: flex; align-items: center; gap: .55rem; padding: .6875rem .6rem;
  min-height: 3rem; min-width: 0; color: #d7e3f3; font-size: .75rem; font-weight: 500;
  text-align: left; transition: border-color .2s,background .2s;
}
.daw-choice:hover { background: #19314a; border-color: #6485a6; }
.daw-choice[aria-pressed="true"] { background: #133535; border-color: #4bd5c199; color: #c0fff0; }
.daw-monogram {
  width: 1.625rem; height: 1.625rem; flex: 0 0 auto; border-radius: .35rem;
  display: grid; place-items: center; color: #bcb5ea; background: #52608f25;
  font-family: ui-monospace,Consolas,monospace; font-size: .625rem; font-weight: 400;
}
.daw-choice[aria-pressed="true"] .daw-monogram { background: #49dbc522; color: #94fbe0; }
.daw-other {
  display: flex; width: 100%; align-items: center; gap: .55rem; padding: .8rem 0 .55rem;
  border: none; background: transparent; font-size: .75rem; color: #b9c9de; min-height: 2.75rem;
}
.daw-other .icon { width: 1rem; height: 1rem; }
.daw-other .icon:last-child { margin-left: auto; }
.daw-other:hover, .daw-other[aria-pressed="true"] { color: var(--cyan); }
.daw-result {
  padding: 1.2rem 1.125rem; margin-top: .6rem; border: 1px solid #52c9c02a; border-radius: .75rem;
  background: linear-gradient(105deg,#1c48432b,#163a4015); min-height: 9rem;
}
.daw-result-tag { display: block; color: #9bf0dc; font-size: .6rem; text-transform: uppercase; letter-spacing: .11em; margin-bottom: .5rem; font-weight: 600; }
.daw-result h3 { font-size: 1.05rem; line-height: 1.35; letter-spacing: -.025em; margin-bottom: .5rem; }
.daw-result > p { font-size: .8125rem; line-height: 1.75; color: #b4c5d9; }
.daw-result[data-kind="other"] { border-color: #aa8de54a; background: linear-gradient(115deg,#4d37682e,#23345211); }
.daw-result[data-kind="other"] .daw-result-tag { color: #d1baff; }
.daw-result-actions { padding: .85rem .15rem .5rem; }
.daw-result-actions .text-link { font-size: .75rem; line-height: 1.5; }
.daw-version-note { color: #94a8c1; font-size: .6875rem; line-height: 1.8; margin: .375rem .15rem 0; }
.daw-noscript { margin-top: .8rem; font-size: .8rem; }
.daw-noscript a { color: var(--cyan); text-decoration: underline; }
.manual-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin: 3.5rem 0 1.375rem; }
.manual-heading .eyebrow { font-size: .625rem; margin-bottom: .6rem; }
.manual-heading h3 { font-size: 1.6rem; letter-spacing: -.04em; }
.manual-heading > p { max-width: 21rem; font-size: .8125rem; line-height: 1.75; }
.manual-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.manual-route { border: 1px solid #32455e88; border-radius: .875rem; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; background: #ffffff02; }
.manual-route > div { min-width: 0; }
.manual-route-icon { border-radius: .5rem; width: 2.5rem; height: 2.5rem; display: grid; place-items: center; flex: 0 0 auto; background: #4bd6d912; color: #7dd8e8; }
.manual-route:last-child .manual-route-icon { background: #ba94ed12; color: #c5a5f2; }
.manual-route .micro-label { font-size: .6rem; color: #9daec5; }
.manual-route h4 { font-size: 1.2rem; line-height: 1.3; font-weight: 550; letter-spacing: -.03em; margin: .45rem 0 .75rem; }
.manual-route p { font-size: .8125rem; line-height: 1.85; }
.manual-route small { display: block; border-top: 1px solid #ffffff0c; padding-top: .875rem; margin-top: .875rem; color: #9cadc2; font-size: .6875rem; line-height: 1.75; }
.daw-request { border: 1px solid #34435c88; border-radius: .75rem; margin-top: 1.25rem; background: #0d1729; }
.daw-request > summary { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; cursor: pointer; list-style: none; padding: 1.125rem 1.5rem; }
.daw-request > summary::-webkit-details-marker { display: none; }
.daw-request > summary > span { display: flex; align-items: baseline; flex-wrap: wrap; gap: .35rem 1rem; }
.daw-request summary strong { font-size: .875rem; font-weight: 550; color: #eef5ff; }
.daw-request summary span span { font-size: .8rem; color: #a3b6cf; }
.daw-request > summary > .icon { width: 1rem; height: 1rem; color: var(--cyan); transition: transform .2s; }
.daw-request[open] > summary > .icon { transform: rotate(45deg); }
.daw-request-body { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; border-top: 1px solid #ffffff0a; padding: 1.5rem; }
.daw-request-body h3 { font-size: 1.125rem; margin-bottom: .875rem; }
.daw-request-body p { font-size: .8125rem; line-height: 1.8; }
.daw-request-body .request-email-note { font-size: .6875rem; color: #93a5be; margin-top: 1rem; }
.daw-request-form label { display: block; color: #d2dfef; font-size: .75rem; font-weight: 500; }
.daw-request-form label > span:not(.field-optional) { color: var(--cyan); }
.field-optional { color: #8e9db6; font-size: .6875rem; padding-left: .35rem; font-weight: 400; }
.request-input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-bottom: 1rem; }
.request-input-grid > * { min-width: 0; }
.daw-request-form input,.daw-request-form textarea {
  margin-top: .5rem; padding: .75rem .875rem; display: block; width: 100%; min-width: 0; max-width: 100%;
  background: #0a1425; border: 1px solid #3a4961; border-radius: .5rem; font: 400 .875rem/1.6 var(--font); color: #ecf5ff;
}
.daw-request-form input::placeholder,.daw-request-form textarea::placeholder { color: #8293ad; }
.daw-request-form textarea { resize: vertical; }
.daw-request-form input:focus-visible,.daw-request-form textarea:focus-visible { outline: .125rem solid var(--cyan); outline-offset: .1875rem; }
.request-form-actions { display: flex; gap: .75rem 1.25rem; align-items: center; flex-wrap: wrap; margin-top: 1rem; }
.request-form-actions .button { font-size: .75rem; }
.request-copy { padding: .625rem 0; min-height: 2.75rem; border: 0; background: transparent; color: #accedd; text-decoration: underline; text-underline-offset: .2rem; font-size: .75rem; }
.daw-request-form .request-feedback { margin-top: .875rem; color: #b8e6de; font-size: .75rem; }
.daw-request-form .request-feedback:empty { margin: 0; }
.request-fallback[hidden] { display: none; }
.faq-list a { color: var(--cyan); text-decoration: underline; text-underline-offset: .2rem; }
@media (max-width: 960px) {
  .daw-layout { grid-template-columns: 1fr 1.15fr; gap: 2rem; }
  .daw-copy h2 { font-size: 2.125rem; }
  .daw-checker { padding: 1.25rem; }
  .daw-picker { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .manual-heading { align-items: flex-start; }
  .manual-route { padding: 1.125rem; gap: .75rem; }
  .daw-request-body { gap: 1.5rem; }
}
@media (max-width: 700px) {
  .hero-daw-link { font-size: .75rem; margin-top: 1rem; }
  .daw-layout { grid-template-columns: 1fr; gap: 1.75rem; }
  .daw-copy h2 { font-size: 2.125rem; }
  .daw-copy > p:not(.eyebrow) { font-size: .875rem; max-width: none; }
  .daw-copy > p.daw-lead { font-size: 1rem; }
  .daw-checker { padding: 1.125rem; }
  .daw-checker-head { gap: .5rem; }
  .daw-checker-head .micro-label { font-size: .625rem; }
  .daw-choice { font-size: .8rem; padding: .65rem .55rem; gap: .5rem; }
  .daw-other { font-size: .8125rem; min-height: 3rem; }
  .daw-result { min-height: 0; }
  .daw-result > p { font-size: .875rem; }
  .daw-result h3 { font-size: 1.125rem; }
  .daw-result-actions .text-link { font-size: .8rem; }
  .daw-version-note { font-size: .75rem; }
  .manual-heading { margin-top: 2.5rem; flex-direction: column; gap: .875rem; }
  .manual-heading h3 { font-size: 1.5rem; }
  .manual-heading > p { max-width: none; font-size: .875rem; }
  .manual-routes { grid-template-columns: 1fr; gap: 1rem; }
  .manual-route { padding: 1.25rem 1.125rem; gap: .875rem; }
  .manual-route p { font-size: .875rem; }
  .manual-route small { font-size: .75rem; }
  .manual-route-icon { width: 2rem; height: 2rem; }
  .daw-request > summary { padding: 1.125rem; }
  .daw-request > summary > span { display: block; }
  .daw-request summary span span { display: block; margin-top: .25rem; font-size: .8125rem; line-height: 1.6; }
  .daw-request-body { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.125rem; }
  .request-input-grid { grid-template-columns: 1fr; }
  .daw-request-form input,.daw-request-form textarea { font-size: 1rem; }
  .request-form-actions { gap: .375rem; }
  .request-form-actions .button { width: 100%; }
  .request-copy { width: 100%; text-align: center; }
}
@media (max-width: 355px) {
  .daw-picker { gap: .5rem; }
  .daw-choice { gap: .35rem; font-size: .725rem; }
  .daw-monogram { width: 1.375rem; height: 1.375rem; }
  .manual-route { display: block; }
  .manual-route-icon { margin-bottom: .75rem; }
}
@media (prefers-reduced-motion: reduce) {
  .daw-choice,.daw-request > summary > .icon { transition: none; }
}

/* Netlify forms + a separate, explicitly opted-in release-news list.
   Inherits the site's tested fluid root scale: 4K remains proportional. */
.form-honeypot, .form-honeypot[hidden] { display: none !important; }
.hero-actions { flex-wrap: wrap; }
.hero-actions .updates-hero-cta { background: #ffffff03; color: #d8e6f5; border-color: #48617b88; }
.hero-actions .updates-hero-cta:hover { background: #81c5ea0b; border-color: #71b9d3aa; }
.form-heading { font-size: 1.5rem; line-height: 1.25; letter-spacing: -.035em; font-weight: 560; margin: 0 0 .6rem; color: var(--ink); }
.form-helper { font-size: .8rem; line-height: 1.75; color: #9eafc5; margin: 0 0 1.5rem; }
.required-mark { color: var(--teal); }
.beta-form .field-optional { text-transform: none; letter-spacing: normal; font-size: .65rem; color: #8ea2ba; }
.form-data-note { font-size: .73rem; line-height: 1.8; color: #a0b2c9; margin-top: 1rem; }
.form-feedback { font-size: .85rem; line-height: 1.8; color: #a8e9dc; margin: .875rem 0 0; overflow-wrap: anywhere; }
.form-feedback:empty { display: none; }
.form-feedback[data-state="error"], .form-feedback[data-state="preview"] { color: #f2c29d; border: 1px solid #d4956133; border-radius: .5rem; padding: .75rem; background: #cd8b4810; }
.form-feedback:focus-visible { outline: .125rem solid var(--cyan); outline-offset: .2rem; }
.netlify-form button[type="submit"]:disabled { cursor: progress; opacity: .65; }
.beta-alternative { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid #ffffff10; color: #9eb2ca; font-size: .875rem; }
.beta-alternative a { display: inline-flex; align-items: center; gap: .5rem; color: #a8cde7; text-decoration: underline; text-underline-offset: .25rem; margin-left: .2rem; }
.beta-alternative .icon { width: .875rem; height: .875rem; }
.request-context-label { margin-top: 1rem; }
.daw-request-form .form-data-note { font-size: .73rem; }

.updates-section { padding-top: 1rem; padding-bottom: 5.5rem; position: relative; }
.updates-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; border: 1px solid #6071aa3d; border-radius: 1.5rem; padding: 3rem; background: radial-gradient(ellipse at 0 10%,#1a264633,transparent 70%),linear-gradient(120deg,#101b31,#10172b); overflow: hidden; }
.updates-panel > * { min-width: 0; }
.updates-envelope { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: .8rem; color: #bda8ff; border: 1px solid #a391d945; background: #a186ff0e; margin-bottom: 1.75rem; }
.updates-envelope .icon { width: 1.375rem; height: 1.375rem; }
.updates-copy .eyebrow { margin-bottom: 1.125rem; color: #b7aae0; }
.updates-copy h2 { font-size: 3rem; line-height: 1.12; letter-spacing: -.045em; margin: 0 0 1.4rem; }
.updates-copy > p:not(.eyebrow) { font-size: .9375rem; line-height: 1.9; max-width: 31rem; color: #afbed2; }
.updates-milestones { display: flex; gap: .875rem; flex-wrap: wrap; margin: 1.5rem 0 1.1rem; }
.updates-milestones > span { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem .9rem; border: 1px solid #ffffff11; border-radius: 2rem; font-size: .75rem; color: #c8d9eb; background: #ffffff02; }
.milestone-dot { width: .35rem; height: .35rem; background: var(--teal); border-radius: 50%; }
.milestone-dot.violet { background: var(--violet); }
.updates-copy > p.updates-small { color: #91a5bd; font-size: .75rem; }
.updates-form { background: #0913267d; border: 1px solid #5d739338; border-radius: 1rem; padding: 2rem; }
.updates-form .form-heading { font-size: 1.75rem; }
.updates-form .email-label { display: block; color: #cbdaea; font-size: .8125rem; line-height: 1.5; margin-bottom: .625rem; }
.updates-email { width: 100%; min-width: 0; font: 400 1rem/1.5 var(--font); color: #edf5ff; border: 1px solid #4f637f99; background: #0b1427; border-radius: .625rem; padding: .95rem 1rem; }
.updates-email::placeholder { color: #8297b3; }
.updates-email:focus-visible { outline: .125rem solid var(--cyan); outline-offset: .1875rem; }
.updates-consent { display: flex; gap: .75rem; align-items: flex-start; margin-top: 1.125rem; cursor: pointer; }
.updates-consent input { width: 1.125rem; height: 1.125rem; flex: 0 0 auto; margin: .15rem 0 0; accent-color: var(--cyan); cursor: pointer; }
.updates-consent span { font-size: .8125rem; line-height: 1.8; color: #c4d2e5; }
.updates-submit { width: 100%; margin-top: 1.4rem; justify-content: space-between; padding-inline: 1.125rem; background: linear-gradient(105deg,#4ad8e912,#a389fe12); border-color: #92b0e361; }
.updates-submit:hover { border-color: #b9b5fa99; background: linear-gradient(105deg,#4ad8e926,#a389fe23); }
.footer-top nav { flex-wrap: wrap; }

/* Static confirmation pages; accessible with or without site JavaScript. */
.confirmation-page { min-height: 100svh; display: flex; flex-direction: column; }
.confirmation-nav { justify-content: flex-start; }
.confirmation-main { flex: 1; padding-block: 6rem; display: grid; place-items: center; }
.confirmation-card { max-width: 47rem; border: 1px solid #7186b440; padding: 3.25rem; border-radius: 1.5rem; background: radial-gradient(ellipse at top left,#20345277,transparent 72%),#0e1a2d; box-shadow: 0 2rem 7rem #04091544; }
.confirmation-check { display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border: 1px solid #50dbc255; border-radius: 1rem; background: #50dbc20c; color: var(--teal); margin-bottom: 2rem; }
.confirmation-check svg { width: 1.875rem; height: 1.875rem; }
.confirmation-card .eyebrow { font-size: .7rem; margin-bottom: 1rem; }
.confirmation-card h1 { font-size: 3.25rem; line-height: 1.08; margin: 0 0 1.5rem; }
.confirmation-body { font-size: 1rem; color: #c5d6eb; line-height: 1.9; }
.confirmation-note { border-top: 1px solid #ffffff11; margin-top: 1.5rem; padding-top: 1.25rem; color: #9fb2c9; font-size: .8125rem; line-height: 1.8; }
.confirmation-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.confirmation-footer { padding-block: 1.5rem; color: #9aacbf; font-size: .75rem; }
@media(max-width: 1100px) {
  .updates-panel { padding: 2.25rem; gap: 2.5rem; }
  .updates-copy h2 { font-size: 2.625rem; }
  .updates-form { padding: 1.625rem; }
}
@media(max-width: 960px) {
  .updates-panel { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .updates-copy > p:not(.eyebrow) { max-width: none; }
  .updates-envelope { margin-bottom: 1.25rem; }
  .updates-form { max-width: none; }
}
@media(max-width: 700px) {
  .updates-section { padding: 0 0 3.5rem; }
  .updates-panel { padding: 1.375rem; gap: 1.75rem; border-radius: 1.125rem; }
  .updates-copy h2 { font-size: 2.25rem; }
  .updates-copy > p:not(.eyebrow) { font-size: .875rem; }
  .updates-form { padding: 1.125rem; }
  .updates-form .form-heading { font-size: 1.5rem; }
  .updates-email { font-size: 1rem; }
  .form-data-note, .daw-request-form .form-data-note { font-size: .75rem; }
  .form-helper { font-size: .8125rem; }
  .beta-form .field-optional { font-size: .625rem; }
  .beta-alternative { font-size: .8125rem; line-height: 1.8; }
  .confirmation-main { padding-block: 3rem; }
  .confirmation-card { padding: 1.625rem; width: 100%; }
  .confirmation-card h1 { font-size: 2.25rem; }
  .confirmation-actions { flex-direction: column; align-items: stretch; }
  .confirmation-actions .button { justify-content: center; }
  .confirmation-body { font-size: .9375rem; }
}
