@charset "UTF-8";
:root {
  color-scheme: dark;
  --bg: #0d0a1e;
  --bg-mid: #11102a;
  --bg-end: #080516;
  --panel: #1a1530;
  --glass: #ffffff14;
  --glass-btn: #ffffff1a;
  --ink: #fff;
  --muted: #ffffffbf;
  --hint: #ffffffa6;
  --teal: #2dd4bf;
  --teal-dim: #2dd4bf40;
  --on-accent: #0f172a;
  --orange: #fb923c;
  --amber: #ffb300;
  --red: #ef4444;
  --green: #22c55e;
  --line: #ffffff26;
  --header: #0d0a1ee8;
  --max: 1280px;
  --radius: 18px;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
}
html[data-theme=light] {
  color-scheme: light;
  --bg: #f0f4ff;
  --bg-mid: #e8eef8;
  --bg-end: #f5f8ff;
  --panel: #fff;
  --glass: #ffffffcc;
  --glass-btn: #e2e8f4;
  --ink: #0d0a1e;
  --muted: #0d0a1ec7;
  --hint: #0d0a1eb3;
  --teal: #12796d;
  --teal-dim: #12796d33;
  --on-accent: #fff;
  --orange: #ea7c0c;
  --amber: #b77900;
  --red: #dc2626;
  --green: #16843e;
  --line: #00000033;
  --header: #f0f4ffe8;
}
@media (prefers-color-scheme: light) {
  html:not([data-theme]) {
    color-scheme: light;
    --bg: #f0f4ff;
    --bg-mid: #e8eef8;
    --bg-end: #f5f8ff;
    --panel: #fff;
    --glass: #ffffffcc;
    --glass-btn: #e2e8f4;
    --ink: #0d0a1e;
    --muted: #0d0a1ec7;
    --hint: #0d0a1eb3;
    --teal: #12796d;
    --teal-dim: #12796d33;
    --on-accent: #fff;
    --orange: #ea7c0c;
    --amber: #b77900;
    --red: #dc2626;
    --green: #16843e;
    --line: #00000033;
    --header: #f0f4ffe8;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: linear-gradient(155deg,var(--bg) 0%,var(--bg-mid) 48%,var(--bg-end) 100%) fixed;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea, summary {
  font: inherit;
}
button, a, summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
a:hover {
  color: var(--teal);
}
.wrap {
  width: min(var(--max),calc(100% - 96px));
  margin: auto;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: var(--teal);
  color: var(--bg);
  padding: 12px;
  z-index: 99;
}
.skip:focus {
  top: 10px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.wordmark {
  display: inline-flex;
}
.wordmark span, .wordmark strong {
  font-weight: 700;
}
.wordmark strong {
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
}
.nav-links a[aria-current=page] {
  color: var(--teal);
}
.language {
  font: 13px ui-monospace,Consolas,monospace;
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 6px;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--glass);
  cursor: pointer;
}
.theme-toggle:hover {
  color: var(--teal);
  border-color: var(--teal);
}
.nav-cta {
  font-size: 14px!important;
  padding: 11px 17px!important;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 5px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--on-accent);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 23px;
  border-radius: 8px;
  transition: filter .15s,transform .15s;
  line-height: 1.4;
}
.button:hover {
  filter: brightness(1.12);
  color: var(--on-accent);
  transform: translateY(-2px);
}
.button.secondary {
  color: var(--ink);
  background: var(--glass);
  border-color: var(--line);
}
.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.arrow {
  font-size: 23px;
  line-height: 1;
}
.eyebrow, .overline {
  font: 13px/1.4 ui-monospace,Consolas,monospace;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 27px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
h1, h2, h3, p {
  margin-top: 0;
}
h1 {
  font-size: clamp(58px,7.6vw,108px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 700;
  margin-bottom: 29px;
}
h1 em {
  font-style: normal;
  color: var(--teal);
}
h2 {
  font-size: clamp(36px,4vw,58px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 600;
  margin-bottom: 24px;
}
h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.hero {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 60px;
  padding: 77px 0 60px;
  min-height: 720px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.lead {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 475px;
  margin-bottom: 29px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fine {
  font-size: 13px;
  color: var(--muted);
  margin: 17px 0 0;
}
.hero-art {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Kaderbehandeling voor in-content screenshots: paneel blijft donker in beide thema's, daarom herdeclareert het de tokens die zijn inhoud gebruikt. Zie website/README.md. */
.screen-stage,
.case-media,
.detail-image,
.demo-gallery figure,
.video-panel video,
.showcase-picture,
.guide-image {
  background: linear-gradient(145deg,#1a1530,#0d0a1e);
  --ink: #fff;
  --muted: #ffffffbf;
  --hint: #ffffffa6;
  --line: #ffffff26;
  --teal: #2dd4bf;
  --bg: #0d0a1e;
  --bg-end: #080516;
  --glass: #ffffff14;
  color: var(--ink);
}
.screen-stage {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 28px 70px #0008;
}
.screen-stage-head, .screen-stage-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: 12px/1.4 ui-monospace,Consolas,monospace;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
}
.screen-stage-head {
  padding: 2px 2px 16px;
}
.screen-stage-head span:first-child {
  color: var(--teal);
}
.screen-stage-foot {
  padding: 16px 2px 2px;
}
.screen-pair {
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg-end);
  border: 1px solid var(--line);
  padding: 16px;
}
.app-screen {
  height: 100%;
  min-width: 0;
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.app-screen img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.media-label {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  color: var(--ink);
}
.feature-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.feature-line span {
  display: flex;
  align-items: center;
  gap: 11px;
}
.feature-line span::before {
  content: "+";
  color: var(--teal);
  font-size: 21px;
}
.section {
  padding: 105px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 43px;
}
.section-head h2 {
  margin-bottom: 0;
  max-width: 720px;
}
.section-head p {
  max-width: 310px;
  color: var(--muted);
  margin-bottom: 4px;
}
.section-index {
  font: 13px ui-monospace,Consolas,monospace;
  color: var(--teal);
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.cases {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 22px;
}
.case {
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s,transform .2s;
}
.case:hover {
  border-color: var(--teal);
  color: var(--ink);
  transform: translateY(-2px);
}
.case-media {
  height: 350px;
  overflow: hidden;
  position: relative;
  padding: 22px;
  display: flex;
  justify-content: center;
}
.case-media img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 35px #0007;
}
.case:nth-child(2n) .case-media {
  background: linear-gradient(145deg,#11102a,#080516);
}
.case-copy {
  padding: 27px 28px 29px;
  flex: 1;
}
.case-copy .overline {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 15px;
}
.case-copy h3 {
  margin-bottom: 14px;
}
.case-copy p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}
.text-link {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--teal);
}
.band-strip {
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.band-strip p {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.02em;
}
.band-strip .overline {
  font-size: 12px;
}
.showcase {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 85px;
  align-items: center;
}
.showcase-picture {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
  margin: 0;
}
.showcase-picture img {
  border: 1px solid var(--line);
  border-radius: 8px;
}
.showcase-picture figcaption {
  font: 12px ui-monospace,Consolas,monospace;
  color: var(--muted);
  margin-top: 18px;
}
.showcase-copy p {
  color: var(--muted);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.steps li {
  display: flex;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.step-number {
  font: 14px ui-monospace,Consolas,monospace;
  color: var(--teal);
  padding-top: 4px;
}
.steps strong {
  display: block;
  font-weight: 600;
}
.steps p {
  font-size: 15px;
  margin: 4px 0 0;
}
.faq-section {
  border-top: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.faq-intro p {
  color: var(--muted);
  max-width: 330px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 35px 23px 0;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 18px;
  font-size: 25px;
  color: var(--teal);
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  color: var(--muted);
  margin: 0 28px 23px 0;
  font-size: 16px;
}
.faq details p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--teal);
}
.download {
  padding: 58px 64px;
  background: linear-gradient(115deg,var(--teal),#22d3ee);
  color: var(--on-accent);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}
.download h2 {
  font-size: 48px;
  max-width: 570px;
  margin-bottom: 18px;
}
.download p {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--on-accent);
}
.download .button {
  background: var(--on-accent);
  border-color: var(--on-accent);
  color: var(--ink);
  white-space: nowrap;
}
.download .button:hover {
  filter: brightness(1.2);
}
.platform-note {
  font-size: 13px;
  margin-top: 15px!important;
  opacity: .85;
}
.site-footer {
  padding: 42px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}
.footer-top .brand {
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-top p {
  font-size: 14px;
  max-width: 350px;
}
.footer-links {
  display: flex;
  gap: 55px;
  font-size: 14px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links strong {
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 7px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.page-heading {
  padding: 70px 0 45px;
}
.page-heading h1 {
  font-size: clamp(48px,6vw,78px);
  line-height: 1.04;
  max-width: 940px;
}
.page-heading .lead {
  max-width: 740px;
}
.breadcrumbs {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 36px;
}
.content-narrow {
  max-width: 820px;
}
.page-content {
  padding-bottom: 95px;
}
.page-content h2 {
  font-size: 34px;
}
.page-content p {
  color: var(--muted);
}
.faq-group {
  margin-bottom: 48px;
}
.faq-group h2 {
  font-size: 25px;
  margin-bottom: 22px;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin: 36px 0 54px;
}
.platform-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--glass);
}
.platform-card.live {
  border-color: var(--teal);
  background: var(--teal-dim);
}
.platform-card h2 {
  font-size: 27px;
  margin: 15px 0;
}
.platform-card p {
  margin-bottom: 22px;
}
.platform-card .overline {
  font-size: 12px;
}
.notice {
  border-left: 3px solid var(--teal);
  padding: 22px 26px;
  background: var(--glass);
  border-radius: 0 10px 10px 0;
  margin: 30px 0;
}
.notice p:last-child {
  margin: 0;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 75px;
  align-items: start;
}
.detail-image {
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
  position: sticky;
  top: 102px;
  margin: 0;
}
.detail-image img {
  max-height: 680px;
  width: 100%;
  object-fit: contain;
  margin: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.detail-image figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.detail-copy section {
  margin-bottom: 40px;
}
.detail-copy ul {
  padding-left: 20px;
  color: var(--muted);
}
.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}
.demo-tabs a {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 14px;
}
.demo-gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
  margin: 35px 0 65px;
}
.demo-gallery figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.demo-gallery img {
  width: 100%;
  height: 480px;
  object-fit: contain;
}
.demo-gallery figcaption {
  padding: 22px;
  font-size: 15px;
  color: var(--muted);
}
.demo-gallery strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 20px;
}
.video-panel {
  max-width: 950px;
  margin: 20px auto 65px;
}
.video-panel video {
  display: block;
  margin: 0 auto;
  width: auto;
  /* height:auto is nodig naast width:auto. Het height-ATTRIBUUT van <video> geldt als
     presentational hint; zonder deze regel klemt max-height dat attribuut op 650px en krijg je
     een 950x650-vak om een 16:10-video, met letterbox. Met height:auto stuurt de eigen
     aspectverhouding het vak (950x595). */
  height: auto;
  max-width: 100%;
  max-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.video-panel figcaption {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}
.help-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}
.help-item {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.help-item p {
  font-size: 16px;
}
.help-item h2 {
  font-size: 25px;
}
.changelog-list {
  margin-top: 34px;
}
.release-note {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.release-note:first-child {
  border-top: 2px solid var(--teal);
}
.release-note h2 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 18px;
}
.release-note li {
  margin-bottom: 12px;
  color: var(--muted);
}
/* De vier juridische pagina's (privacy, terms, credits, ableton). Sinds WEB.29 zijn dat gewone
   gelokaliseerde pagina's met dezelfde kop, hero en voet als de rest; alleen de documentelementen
   hieronder komen er nog bij. Er is geen legal.css meer - dit bestand is het hele palet. */
.legal-content {
  max-width: 850px;
}
.legal-content h2 {
  font-size: 28px;
  margin: 42px 0 12px;
}
.legal-content h3 {
  font-size: 19px;
  color: var(--teal);
  margin: 28px 0 8px;
}
.legal-content p, .legal-content li {
  color: var(--muted);
}
.legal-content p {
  margin: 0 0 14px;
}
.legal-content ul {
  margin: 0 0 18px 22px;
}
.legal-content li {
  margin-bottom: 7px;
}
.legal-content strong {
  color: var(--ink);
}
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
}
/* Het eerste element mag geen kopmarge meer hebben: de hero staat er al boven. */
.legal-content>:first-child {
  margin-top: 0;
}
.legal-content .card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 18px 0 30px;
}
.legal-content .card>:first-child {
  margin-top: 0;
}
.legal-content .card>:last-child {
  margin-bottom: 0;
}
.legal-content .callout {
  border-left: 3px solid var(--amber);
  background: color-mix(in srgb, var(--amber) 12%, transparent);
  padding: 14px 18px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
  color: var(--ink);
  font-size: 15px;
}
.legal-content .mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13.5px;
}
.legal-content pre {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 16px 0;
  overflow-x: auto;
  white-space: pre-wrap;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.legal-content .table-scroll {
  overflow-x: auto;
}
.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal-content th {
  color: var(--teal);
}
.legal-content td {
  color: var(--muted);
}
.legal-content th, .legal-content td {
  border-bottom: 1px solid var(--line);
  padding: 9px 10px;
  text-align: left;
  vertical-align: top;
}
.legal-content .muted {
  color: var(--muted);
}
.guide-section {
  padding: 90px 0 70px;
}
.guide-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 30px;
}
.guide-heading h2 {
  margin: 0;
}
.guide-heading>p {
  margin: 0;
  max-width: 600px;
}
.guide-index {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-bottom: 30px;
}
.guide-index a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
}
.guide-index span, .guide-number {
  font: 12px ui-monospace,Consolas,monospace;
  color: var(--teal);
}
.guide-topics {
  border-top: 1px solid var(--line);
}
.guide-topic {
  border-bottom: 1px solid var(--line);
}
.guide-topic summary {
  list-style: none;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 12px;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
}
.guide-topic summary::-webkit-details-marker {
  display: none;
}
.guide-topic summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 28px;
  color: var(--teal);
}
.guide-topic[open] summary::after {
  content: "−";
}
.guide-topic summary strong {
  display: block;
  font-size: 22px;
}
.guide-topic summary small {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  margin-top: 4px;
}
.guide-body {
  display: grid;
  grid-template-columns: minmax(180px,300px) 1fr;
  gap: 36px;
  padding: 0 0 36px 60px;
}
.guide-intro {
  grid-column: 1/-1;
  max-width: 900px;
  margin: 0;
  color: var(--muted);
}
.guide-image {
  margin: 5px 0 0;
  border: 1px solid var(--line);
  padding: 14px;
  border-radius: var(--radius);
  align-self: start;
}
.guide-image img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}
.guide-sections {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px;
}
.guide-sections section {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.guide-sections h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--teal);
}
.guide-sections p {
  font-size: 15px;
  margin-bottom: 12px;
}
.contact-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  padding: 13px 14px;
  line-height: 1.45;
}
.contact-form textarea {
  resize: vertical;
}
.form-wide {
  grid-column: 1/-1;
}
.form-actions {
  display: flex;
  flex-direction: row!important;
  align-items: center;
  gap: 18px!important;
}
.form-actions p {
  font-size: 13px;
  margin: 0;
}
.form-actions a {
  color: var(--teal);
}
.form-status {
  margin: 0;
  color: var(--teal)!important;
  min-height: 1.6em;
}
.form-status.error {
  color: var(--red)!important;
}
.form-trap {
  position: absolute!important;
  left: -10000px!important;
  width: 1px!important;
  height: 1px!important;
  overflow: hidden!important;
}
@media (min-width: 1450px) {
  .screen-pair {
    height: 540px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .nav-links {
    gap: 16px;
  }
  .nav {
    gap: 16px;
  }
  .hero {
    gap: 36px;
    min-height: 620px;
  }
  .screen-pair {
    height: 430px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .showcase {
    gap: 45px;
  }
  .faq-layout {
    gap: 50px;
  }
  .download {
    padding: 45px;
  }
  .detail-grid {
    gap: 40px;
  }
}
@media (max-width: 1050px) {
  .guide-index {
    grid-template-columns: repeat(2,1fr);
  }
  .guide-body {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .guide-image {
    max-width: 320px;
  }
  .contact-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nav {
    min-height: 78px;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 15px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    width: 100%;
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
  }
  .js .nav-links {
    display: none;
  }
  .js .nav-links.open {
    display: flex;
  }
  .nav-cta {
    margin-left: 0;
  }
  .hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero h1 {
    font-size: 72px;
  }
  .hero .lead {
    font-size: 18px;
  }
  .hero-art {
    width: 100%;
    max-width: 760px;
  }
  .screen-pair {
    height: 510px;
  }
  .actions .button {
    padding: 13px 17px;
    font-size: 15px;
  }
  .feature-line {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 25px;
  }
  .cases {
    gap: 14px;
  }
  .case-media {
    height: 270px;
    padding: 18px;
  }
  .case-copy {
    padding: 23px 20px;
  }
  .case-copy h3 {
    font-size: 21px;
  }
  .section {
    padding: 75px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    max-width: 500px;
    margin-top: 20px;
  }
  .showcase {
    grid-template-columns: 1fr;
  }
  .showcase-copy {
    max-width: 620px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-intro p {
    max-width: 600px;
  }
  .download {
    display: block;
  }
  .download .button {
    margin-top: 25px;
  }
  .platform-grid, .help-grid {
    gap: 15px;
  }
  .platform-card {
    padding: 22px;
  }
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 54px;
  }
  .cases {
    grid-template-columns: 1fr;
  }
  .guide-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .guide-index {
    grid-template-columns: 1fr;
  }
  .guide-topic summary {
    grid-template-columns: 36px 1fr;
  }
  .guide-sections {
    grid-template-columns: 1fr;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .form-wide {
    grid-column: auto;
  }
  .form-actions {
    align-items: flex-start;
    flex-direction: column!important;
  }
  .demo-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .demo-gallery img {
    height: 360px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .brand {
    font-size: 23px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 43px 0 35px;
    gap: 34px;
  }
  .hero h1 {
    font-size: 72px;
    max-width: 470px;
    margin-bottom: 25px;
  }
  .eyebrow {
    font-size: 11px;
    margin-bottom: 23px;
  }
  .hero .lead {
    max-width: 420px;
    font-size: 17px;
  }
  .screen-stage {
    padding: 10px;
  }
  .screen-stage-head {
    padding: 2px 1px 10px;
    font-size: 10px;
  }
  .screen-stage-foot {
    padding: 10px 1px 2px;
    font-size: 10px;
  }
  .screen-stage-foot>span:last-child {
    display: none;
  }
  .screen-pair {
    height: 310px;
    gap: 8px;
    padding: 8px;
  }
  .feature-line {
    gap: 9px 20px;
    font-size: 12px;
    padding: 18px 0;
  }
  .feature-line span {
    gap: 7px;
  }
  .section {
    padding: 65px 0;
  }
  h2 {
    font-size: 38px;
  }
  .cases {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .case-media {
    height: 300px;
    padding: 20px;
  }
  .case-copy {
    padding: 25px;
  }
  .case-copy h3 {
    font-size: 25px;
  }
  .band-strip {
    display: block;
  }
  .band-strip p {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .showcase-picture {
    padding: 15px;
  }
  .showcase {
    gap: 35px;
  }
  .faq summary {
    font-size: 16px;
    padding-top: 21px;
    padding-bottom: 21px;
  }
  .download {
    padding: 33px 26px;
    margin-bottom: 50px;
  }
  .download h2 {
    font-size: 36px;
  }
  .footer-top {
    display: block;
    margin-bottom: 25px;
  }
  .footer-links {
    margin-top: 28px;
    justify-content: space-between;
  }
  .footer-bottom {
    display: block;
    line-height: 1.9;
  }
  .page-heading {
    padding: 42px 0 30px;
  }
  .page-heading h1 {
    font-size: 49px;
  }
  .page-heading .lead {
    font-size: 17px;
  }
  .platform-grid, .help-grid, .detail-grid, .demo-gallery {
    grid-template-columns: 1fr;
  }
  .detail-image {
    position: static;
    order: 2;
  }
  .demo-gallery img {
    max-height: 560px;
  }
  .platform-grid {
    margin-top: 15px;
  }
  .page-content {
    padding-bottom: 60px;
  }
  .legal-content table {
    display: block;
    overflow-x: auto;
  }
  .media-label {
    font-size: 10px;
  }
  .band-strip .text-link {
    margin-top: 9px;
  }
  .footer-bottom span {
    display: block;
  }
  .brand {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none!important;
    animation: none!important;
  }
}
