:root {
  color-scheme: dark;
  --bg: #0a0d12;
  --bg-soft: #0f131a;
  --panel: #151a23;
  --panel-2: #1b222e;
  --panel-3: #242d3a;
  --line: #2b3544;
  --line-soft: rgba(146, 162, 184, 0.15);
  --text: #edf3fb;
  --muted: #98a5b8;
  --muted-2: #667489;
  --teal: #2dd4bf;
  --teal-bright: #65ebd9;
  --teal-deep: #0a756d;
  --teal-soft: rgba(45, 212, 191, 0.12);
  --amber: #f4b84a;
  --amber-soft: rgba(244, 184, 74, 0.13);
  --blue: #7dd3fc;
  --danger: #f45f72;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --radius: 14px;
  --shell: 1220px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 4%, rgba(45, 212, 191, 0.075), transparent 23rem),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--teal-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--teal);
  color: #041412;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--teal);
  color: #041412;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 124px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(151, 165, 186, 0.12);
  background: rgba(10, 13, 18, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  width: min(var(--shell), calc(100% - 48px));
  height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.guide-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  flex: none;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  box-shadow: 0 0 30px rgba(45, 212, 191, 0.15);
  color: #06211e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-name {
  overflow: hidden;
  font-size: 14px;
  font-weight: 740;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
}

.brand-section {
  color: var(--muted);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.site-footer nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.nav-cta:hover {
  border-color: rgba(45, 212, 191, 0.55);
  background: var(--teal-soft);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 70px;
  align-items: center;
  min-height: 780px;
  padding-block: 110px 104px;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50px;
  bottom: 40px;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(transparent, rgba(102, 117, 138, 0.16), transparent);
}

.eyebrow,
.step-label,
.panel-kicker {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  vertical-align: 1px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 5.6vw, 5.3rem);
  font-weight: 770;
}

h1 span {
  color: var(--teal);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 740;
}

h3 {
  font-size: 23px;
  font-weight: 700;
}

.hero-lede {
  max-width: 615px;
  margin: 0;
  color: #aeb9c9;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--teal);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.13);
  color: #041a18;
}

.button-primary:hover {
  filter: brightness(1.09);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.button-ghost:hover {
  border-color: rgba(45, 212, 191, 0.55);
  background: var(--teal-soft);
}

.assurance-list {
  display: grid;
  gap: 14px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.assurance-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.assurance-list li > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}

.assurance-list strong {
  color: var(--text);
  font-size: 12px;
}

.assurance-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
}

.hero-product {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.frame-glow {
  position: absolute;
  inset: 15% 7% -4% 17%;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.13);
  filter: blur(75px);
}

.studio-frame {
  position: relative;
  overflow: hidden;
  width: 850px;
  border: 1px solid #364151;
  border-radius: 13px;
  background: #10141b;
  box-shadow: var(--shadow);
  transform: rotateY(-6deg) rotateX(1.4deg);
  transform-origin: center left;
}

.frame-bar {
  height: 52px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 13px;
  border-bottom: 1px solid #323b4a;
  background: #171c25;
}

.frame-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.frame-brand span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 6px;
  background: var(--teal);
  color: #041a18;
  font-size: 10px;
  font-weight: 900;
}

.frame-title {
  height: 31px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 9px;
  border: 1px solid #344050;
  border-radius: 6px;
  background: #202735;
  color: #dce4f0;
  font-size: 11px;
}

.frame-title small {
  color: #7e899b;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.frame-meta {
  color: #8f9aac;
  font-size: 10px;
}

.frame-workspace {
  height: 474px;
  display: grid;
  grid-template-columns: 174px 1fr 144px;
}

.frame-rail {
  padding: 8px;
  background: #191e27;
}

.frame-rail.left {
  border-right: 1px solid #333d4c;
}

.frame-rail.right {
  border-left: 1px solid #333d4c;
}

.mini-panel {
  margin-bottom: 8px;
  padding: 8px;
  border: 1px solid #303a49;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.014);
}

.mini-panel > small,
.visual-window-head b {
  display: block;
  margin-bottom: 7px;
  color: #8390a3;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mini-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mini-buttons span {
  display: grid;
  min-height: 25px;
  place-items: center;
  border: 1px solid #364153;
  border-radius: 5px;
  background: #222936;
  color: #aeb7c5;
  font-size: 6.5px;
  font-weight: 700;
  text-align: center;
}

.mini-buttons span.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #051b19;
}

.mini-select {
  display: flex;
  height: 25px;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 7px;
  border: 1px solid #364153;
  border-radius: 5px;
  color: #aeb7c5;
  font-size: 7px;
}

.mini-select i {
  font-style: normal;
}

.mini-panel.layers > div {
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  border-bottom: 1px solid rgba(117, 131, 151, 0.1);
  color: #b7c0cf;
  font-size: 7px;
}

.mini-panel.layers > div:last-child {
  border-bottom: 0;
}

.mini-panel.layers b {
  color: var(--teal);
  font-size: 6px;
}

.layer-color {
  width: 5px;
  height: 18px;
  border-radius: 3px;
}

.teal {
  background-color: var(--teal) !important;
}

.amber {
  background-color: var(--amber) !important;
}

.blue {
  background-color: var(--blue) !important;
}

.values label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  border-bottom: 1px solid rgba(117, 131, 151, 0.1);
  font-size: 7px;
}

.values label span {
  color: #778497;
}

.values label b {
  color: #dbe3ed;
  font-variant-numeric: tabular-nums;
}

.frame-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: 43px 1fr 45px;
}

.frame-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 8px;
  border-bottom: 1px solid #303a49;
  background: #171c24;
}

.frame-tools span {
  display: grid;
  min-height: 24px;
  place-items: center;
  padding: 0 7px;
  border: 1px solid #344052;
  border-radius: 4px;
  color: #9ca8b9;
  font-size: 6.5px;
}

.frame-tools span.active {
  border-color: var(--teal);
  background: rgba(45, 212, 191, 0.15);
  color: #e1fffb;
}

.frame-tools i {
  width: 1px;
  height: 20px;
  margin-inline: 3px;
  background: #303a49;
}

.highway {
  position: relative;
  overflow: hidden;
  padding-top: 25px;
  background:
    linear-gradient(90deg, transparent 24.8%, rgba(244, 184, 74, 0.17) 25%, transparent 25.2%, transparent 49.8%, rgba(244, 184, 74, 0.17) 50%, transparent 50.2%, transparent 74.8%, rgba(244, 184, 74, 0.17) 75%, transparent 75.2%),
    repeating-linear-gradient(90deg, transparent 0 6.15%, rgba(147, 163, 185, 0.055) 6.2% 6.35%),
    #0f1319;
}

.measure-labels {
  position: absolute;
  top: 5px;
  right: 4px;
  left: 31px;
  display: flex;
  justify-content: space-around;
  color: #515d6e;
  font-size: 7px;
  font-variant-numeric: tabular-nums;
}

.lane {
  position: relative;
  height: calc(100% / 8);
  border-top: 1px solid rgba(103, 116, 136, 0.12);
}

.lane:last-of-type {
  border-bottom: 1px solid rgba(103, 116, 136, 0.12);
}

.lane > b {
  position: absolute;
  top: 50%;
  left: 8px;
  color: #596677;
  font-size: 6px;
  transform: translateY(-50%);
}

.note {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.15);
  transform: translate(-50%, -50%) rotate(45deg);
}

.n1 { left: 12%; }
.n2 { left: 23%; }
.n3 { left: 34%; }
.n4 { left: 45%; }
.n5 { left: 56%; }
.n6 { left: 67%; }
.n7 { left: 78%; }
.n8 { left: 89%; }

.playhead,
.edit-playhead {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 61%;
  width: 1px;
  background: var(--amber);
  box-shadow: 0 0 9px rgba(244, 184, 74, 0.75);
}

.playhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: -3px;
  border-top: 6px solid var(--amber);
  border-right: 3.5px solid transparent;
  border-left: 3.5px solid transparent;
}

.frame-transport {
  display: grid;
  grid-template-columns: 28px 28px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border-top: 1px solid #303a49;
  background: #171c24;
  color: #91a0b3;
  font-size: 8px;
}

.frame-transport > span {
  display: grid;
  height: 27px;
  place-items: center;
  border: 1px solid #354052;
  border-radius: 5px;
}

.frame-transport > span.play {
  border-color: var(--teal);
  background: var(--teal);
  color: #06211e;
}

.frame-transport > div {
  height: 3px;
  border-radius: 3px;
  background: #313b4a;
}

.frame-transport > div i {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.frame-transport small {
  font-size: 7px;
  font-variant-numeric: tabular-nums;
}

.floating-callout {
  position: absolute;
  z-index: 3;
  min-width: 125px;
  padding: 10px 12px;
  border: 1px solid rgba(91, 108, 131, 0.65);
  border-radius: 9px;
  background: rgba(17, 22, 30, 0.94);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.floating-callout span {
  display: block;
  color: var(--teal);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.floating-callout strong {
  display: block;
  margin-top: 3px;
  font-size: 10px;
}

.callout-one {
  top: -22px;
  left: 48px;
}

.callout-two {
  right: -32px;
  bottom: -25px;
}

.flow-ribbon {
  border-block: 1px solid var(--line-soft);
  background: #0c1016;
}

.flow-grid {
  min-height: 122px;
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
  align-items: center;
}

.flow-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
}

.flow-grid > div > span {
  grid-row: 1 / 3;
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.flow-grid strong {
  font-size: 13px;
  line-height: 1.2;
}

.flow-grid small {
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.3;
}

.flow-grid > i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, var(--line), var(--teal-deep));
}

.flow-grid > i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-heading > p:last-child,
.split-heading > p,
.centered > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.setup-section {
  padding-bottom: 138px;
}

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

.setup-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006));
}

.setup-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -75px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(117, 133, 154, 0.13);
  border-radius: 50%;
}

.setup-card.featured {
  border-color: rgba(45, 212, 191, 0.45);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.095), rgba(255, 255, 255, 0.008) 58%);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.25);
}

.step-number {
  margin-bottom: 56px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.setup-card h3 {
  margin-bottom: 16px;
}

.setup-card > p:not(.step-label) {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.setup-card p strong {
  color: var(--text);
}

.step-proof,
.file-row {
  position: absolute;
  right: 30px;
  bottom: 26px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted-2);
}

.proof-dot.live {
  background: var(--teal);
  box-shadow: 0 0 10px rgba(45, 212, 191, 0.7);
}

.file-row {
  gap: 6px;
}

.file-row span {
  padding: 4px 7px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 5px;
  background: var(--teal-soft);
  color: var(--teal-bright);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 8px;
}

.setup-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
}

.note-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 50%;
  color: var(--teal);
  font-family: Georgia, serif;
  font-weight: 700;
}

.setup-note > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.setup-note strong {
  font-size: 13px;
}

.setup-note span {
  color: var(--muted);
  font-size: 12px;
}

.setup-note > a {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.workflow-section {
  border-block: 1px solid var(--line-soft);
  background:
    linear-gradient(rgba(120, 137, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 137, 160, 0.045) 1px, transparent 1px),
    #0d1117;
  background-size: 42px 42px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.split-heading > div h2 {
  margin-bottom: 0;
}

.workflow-console {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 590px;
  overflow: hidden;
  border: 1px solid #344052;
  border-radius: 16px;
  background: #11161e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.workflow-tabs {
  padding: 14px;
  border-right: 1px solid var(--line);
  background: #121720;
}

.workflow-tab {
  width: 100%;
  min-height: 101px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid transparent;
  border-bottom-color: rgba(115, 130, 150, 0.12);
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.workflow-tab:hover {
  color: var(--text);
}

.workflow-tab.active {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(45, 212, 191, 0.09);
  color: var(--text);
}

.workflow-tab > span:first-child {
  align-self: start;
  padding-top: 3px;
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.workflow-tab > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.workflow-tab strong {
  font-size: 14px;
}

.workflow-tab small {
  color: var(--muted-2);
  font-size: 10px;
}

.workflow-tab > i {
  color: var(--muted-2);
  font-style: normal;
}

.workflow-tab.active > i {
  color: var(--teal);
}

.workflow-display {
  min-width: 0;
}

.workflow-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  animation: panel-in 280ms ease both;
}

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

@keyframes panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(240px, 0.58fr);
  column-gap: 48px;
  padding: 44px 48px 38px;
}

.panel-copy .panel-kicker,
.panel-copy h3,
.panel-copy > p:not(.panel-kicker) {
  grid-column: 1;
}

.panel-copy h3 {
  margin-bottom: 14px;
  font-size: 31px;
}

.panel-copy > p:not(.panel-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.panel-copy ul {
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-copy li {
  position: relative;
  padding-left: 18px;
  color: #b4bfce;
  font-size: 12px;
}

.panel-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--teal);
}

.panel-visual {
  align-self: end;
  min-height: 310px;
  margin: 0 48px 46px;
  overflow: hidden;
  border: 1px solid #354153;
  border-radius: 11px;
  background: #0e131a;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.visual-window-head {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid #2e3948;
  background: #171d27;
}

.visual-window-head > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a4555;
}

.visual-window-head b {
  margin: 0 0 0 auto;
  font-size: 7px;
}

.drop-zone {
  position: relative;
  min-height: 168px;
  display: grid;
  place-content: center;
  justify-items: center;
  margin: 21px;
  border: 1px dashed rgba(45, 212, 191, 0.46);
  border-radius: 9px;
  background: rgba(45, 212, 191, 0.045);
}

.file-symbol {
  display: grid;
  width: 50px;
  height: 58px;
  margin-bottom: 13px;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.6);
  border-radius: 7px;
  background: var(--teal-soft);
  color: var(--teal-bright);
  font-family: Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.drop-zone strong {
  font-size: 13px;
}

.drop-zone small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 9px;
}

.drop-zone i {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 9px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.placement-row,
.sound-select {
  height: 45px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  margin: 0 21px 20px;
  padding: 0 14px;
  border: 1px solid #2d3848;
  border-radius: 7px;
  color: var(--muted);
  font-size: 10px;
}

.placement-row b,
.sound-select b {
  color: var(--text);
}

.placement-row i,
.sound-select i {
  color: var(--teal);
  font-style: normal;
}

.layers-visual {
  padding-bottom: 18px;
}

.layer-visual-row {
  display: grid;
  grid-template-columns: 7px 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 55px;
  margin: 10px 18px 0;
  padding: 0 13px;
  border: 1px solid #2d3746;
  border-radius: 7px;
  background: #151b24;
}

.layer-visual-row.selected {
  border-color: rgba(45, 212, 191, 0.46);
  background: rgba(45, 212, 191, 0.055);
}

.layer-visual-row > i {
  width: 5px;
  height: 30px;
  border-radius: 4px;
}

.layer-visual-row > span {
  display: flex;
  flex-direction: column;
}

.layer-visual-row strong {
  font-size: 10px;
}

.layer-visual-row small {
  color: var(--muted-2);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.layer-visual-row > b,
.layer-visual-row > em {
  padding: 3px 6px;
  border: 1px solid #334052;
  border-radius: 4px;
  color: var(--muted);
  font-size: 7px;
  font-style: normal;
}

.layer-visual-row > b {
  color: var(--teal);
}

.timeline-mini {
  position: relative;
  height: 34px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr;
  gap: 5px;
  margin: 15px 18px 0;
  padding: 7px 0;
}

.timeline-mini span {
  border-radius: 3px;
  background: rgba(45, 212, 191, 0.45);
}

.timeline-mini span:nth-child(2) { background: rgba(244, 184, 74, 0.55); }
.timeline-mini span:nth-child(3) { background: rgba(125, 211, 252, 0.5); }

.timeline-mini i {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 64%;
  width: 1px;
  background: var(--amber);
}

.edit-visual {
  display: grid;
  grid-template-rows: 45px 1fr;
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  border-bottom: 1px solid #2d3848;
  background: #171d27;
}

.visual-toolbar span {
  padding: 5px 8px;
  border: 1px solid #354052;
  border-radius: 4px;
  color: var(--muted);
  font-size: 7px;
}

.visual-toolbar span.active {
  border-color: rgba(45, 212, 191, 0.6);
  background: var(--teal-soft);
  color: var(--text);
}

.visual-toolbar i {
  width: 1px;
  height: 20px;
  margin: 0 3px;
  background: #344052;
}

.visual-toolbar b {
  margin-left: auto;
  color: var(--teal);
  font-size: 7px;
}

.edit-grid {
  position: relative;
  overflow: hidden;
  padding-top: 18px;
  background:
    repeating-linear-gradient(90deg, transparent 0 8.2%, rgba(132, 148, 169, 0.07) 8.3% 8.45%),
    #0e131a;
}

.edit-grid > div {
  position: relative;
  height: 30%;
  border-bottom: 1px solid rgba(112, 127, 147, 0.15);
}

.edit-grid > div > b {
  position: absolute;
  top: 50%;
  left: 13px;
  color: var(--muted-2);
  font-size: 7px;
  transform: translateY(-50%);
}

.edit-grid > div > i {
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--amber);
  transform: translate(-50%, -50%) rotate(45deg);
}

.edit-grid .p1 { left: 14%; }
.edit-grid .p2 { left: 28%; }
.edit-grid .p3 { left: 42%; }
.edit-grid .p4 { left: 56%; }
.edit-grid .p5 { left: 70%; }
.edit-grid .p6 { left: 84%; }

.edit-grid .selected-note {
  outline: 2px solid white;
  outline-offset: 3px;
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.45);
}

.edit-playhead {
  left: 63%;
}

.sound-visual {
  padding-bottom: 20px;
}

.sound-select {
  margin-top: 18px;
}

.mixer-line {
  display: grid;
  grid-template-columns: 78px 1fr 30px;
  align-items: center;
  gap: 12px;
  margin: 17px 24px;
  color: var(--muted);
  font-size: 9px;
}

.mixer-line > i {
  height: 5px;
  overflow: hidden;
  border-radius: 4px;
  background: #2a3443;
}

.mixer-line > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
}

.mixer-line em {
  color: var(--text);
  font-size: 8px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

.beat-one {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 24px 0;
  padding: 16px;
  border: 1px solid rgba(244, 184, 74, 0.3);
  border-radius: 8px;
  background: var(--amber-soft);
  color: var(--muted);
  font-size: 9px;
}

.beat-one strong {
  color: var(--amber);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.export-visual {
  padding-bottom: 20px;
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 20px;
}

.export-grid > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 90px;
  padding: 14px;
  border: 1px solid #303b4c;
  border-radius: 8px;
  background: #151b24;
}

.export-grid > div.active {
  border-color: rgba(45, 212, 191, 0.48);
  background: rgba(45, 212, 191, 0.055);
}

.export-grid > div > span {
  grid-row: 1 / 3;
  display: grid;
  width: 42px;
  height: 48px;
  place-items: center;
  border: 1px solid #3a4658;
  border-radius: 6px;
  color: var(--teal);
  font-family: Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.export-grid strong {
  font-size: 10px;
}

.export-grid small {
  color: var(--muted-2);
  font-size: 8px;
}

.media-section {
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 40%, rgba(45, 212, 191, 0.08), transparent 26rem),
    var(--bg);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  gap: 16px;
  align-items: start;
}

.video-feature,
.video-secondary,
.audio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #121720;
}

.video-feature {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.media-label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-label small {
  margin-left: auto;
  color: var(--muted-2);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
}

.media-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.75);
}

.amber-pulse {
  background: var(--amber);
  box-shadow: 0 0 12px rgba(244, 184, 74, 0.65);
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.02 / 1;
  background: #05070a;
}

.video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.video-shell video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #05070a;
}

.video-caption {
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
}

.video-caption > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(45, 212, 191, 0.34);
  border-radius: 50%;
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
}

.video-caption > div {
  min-width: 0;
}

.video-caption strong,
.compact-caption strong {
  display: block;
  font-size: 13px;
}

.video-caption p,
.compact-caption p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.video-caption a {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.compact-video {
  aspect-ratio: 1.9 / 1;
}

.compact-caption {
  padding: 17px 18px 19px;
}

.audio-card {
  padding-bottom: 18px;
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.055), transparent 54%),
    #121720;
}

.audio-icon {
  position: relative;
  width: 13px;
  height: 13px;
}

.audio-icon::before,
.audio-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2px;
  border-radius: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}

.audio-icon::before {
  left: 2px;
  height: 7px;
  box-shadow: 4px 0 0 var(--teal), 8px 0 0 var(--teal);
}

.audio-icon::after {
  left: 6px;
  height: 13px;
}

.audio-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  padding: 21px 18px 4px;
}

.audio-copy p {
  margin: 0 0 3px;
  color: var(--teal);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audio-copy h3 {
  margin: 0;
  font-size: 19px;
}

.audio-copy > span {
  color: var(--muted-2);
  font-size: 8px;
  white-space: nowrap;
}

.waveform {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 6px 18px 8px;
  overflow: hidden;
}

.waveform i {
  width: 3px;
  height: var(--h);
  flex: 1 1 3px;
  border-radius: 3px;
  background: linear-gradient(var(--teal-bright), var(--teal-deep));
  opacity: 0.75;
}

.audio-card audio {
  display: block;
  width: calc(100% - 36px);
  height: 38px;
  margin: 0 18px;
  border-radius: 7px;
}

.audio-note {
  margin: 8px 18px 0;
  color: var(--muted-2);
  font-size: 8px;
  text-align: center;
}

.audio-note a {
  color: var(--muted);
  text-underline-offset: 2px;
}

.anatomy-section {
  padding-block: 136px;
}

.anatomy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 16px;
}

.anatomy-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.anatomy-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
  height: 86px;
  border: 1px solid rgba(119, 136, 158, 0.12);
  border-bottom: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 15%, rgba(112, 129, 150, 0.08) 15.2% 15.5%),
    repeating-linear-gradient(0deg, transparent 0 23%, rgba(112, 129, 150, 0.08) 23.2% 23.7%);
}

.center-card {
  border-color: rgba(45, 212, 191, 0.34);
  background: linear-gradient(155deg, rgba(45, 212, 191, 0.07), var(--panel) 58%);
}

.anatomy-index {
  position: absolute;
  top: 24px;
  right: 25px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
}

.anatomy-card h3 {
  margin-bottom: 19px;
}

.anatomy-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.anatomy-card li {
  color: var(--muted);
  font-size: 12px;
}

.anatomy-card li::before {
  content: "—";
  margin-right: 8px;
  color: var(--teal);
}

.formats-section {
  border-block: 1px solid var(--line-soft);
  background: #0d1117;
}

.formats-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 95px;
  align-items: start;
}

.formats-intro {
  position: sticky;
  top: 110px;
}

.formats-intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.local-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  margin-top: 42px;
  padding: 20px;
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 11px;
  background: rgba(45, 212, 191, 0.05);
}

.lock-glyph {
  position: relative;
  width: 34px;
  height: 29px;
  align-self: center;
  border: 1px solid var(--teal);
  border-radius: 6px;
}

.lock-glyph::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--teal);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}

.local-card strong {
  display: block;
  font-size: 13px;
}

.local-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.format-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.format-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.format-head {
  height: 67px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.format-head span {
  display: grid;
  min-width: 35px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.format-head.out span {
  background: var(--amber-soft);
  color: var(--amber);
}

.format-head strong {
  font-size: 14px;
}

.format-row {
  min-height: 105px;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(114, 130, 151, 0.12);
}

.format-row:last-child {
  border-bottom: 0;
}

.format-row code {
  color: var(--teal-bright);
  font-family: Consolas, "SFMono-Regular", monospace;
  font-size: 10px;
  line-height: 1.5;
}

.format-row > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.format-row strong {
  font-size: 11px;
}

.format-row small {
  color: var(--muted-2);
  font-size: 9px;
  line-height: 1.5;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

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

.precision-grid article {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.016);
}

.precision-grid h3 {
  margin: 44px 0 15px;
  font-size: 19px;
}

.precision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.precision-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  border: 1px solid #3b4758;
  border-radius: 9px;
}

.snap-mark {
  background:
    radial-gradient(circle, var(--teal) 0 2px, transparent 2.5px) 7px 7px / 14px 14px;
}

.bar-mark::before,
.bar-mark::after {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  border: 1px solid var(--amber);
}

.bar-mark::before { left: 10px; width: 8px; }
.bar-mark::after { right: 10px; width: 12px; }

.tempo-mark::before {
  content: "112";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.touch-mark::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 13px;
  width: 18px;
  height: 27px;
  border: 1px solid var(--teal);
  border-radius: 5px;
}

.touch-mark::after {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 21px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--teal);
}

.shortcuts-section {
  border-block: 1px solid var(--line-soft);
  background: #0d1117;
}

.shortcuts-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
  align-items: center;
}

.shortcuts-grid h2 {
  margin-bottom: 0;
}

.shortcut-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  margin: 0;
}

.shortcut-list > div {
  min-height: 64px;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(113, 129, 150, 0.15);
}

.shortcut-list dt {
  display: flex;
  gap: 5px;
}

kbd {
  display: inline-grid;
  min-width: 29px;
  min-height: 28px;
  place-items: center;
  padding: 0 7px;
  border: 1px solid #3a4658;
  border-bottom-width: 2px;
  border-radius: 5px;
  background: #171d26;
  color: var(--text);
  font-family: inherit;
  font-size: 9px;
  font-weight: 750;
}

.shortcut-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 95px;
}

.faq-section .section-heading {
  margin: 0;
}

.faq-section h2 {
  font-size: clamp(2.3rem, 3.2vw, 3.5rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--teal);
  font-size: 22px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 44px 28px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 140px;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 130%, rgba(45, 212, 191, 0.2), transparent 40%),
    #0c1016;
}

.final-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(rgba(104, 120, 141, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 120, 141, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(transparent 5%, black 60%, transparent 100%);
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.final-content h2 {
  max-width: 880px;
  margin-bottom: 20px;
}

.final-content > p:not(.eyebrow) {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #080b0f;
}

.footer-grid {
  min-height: 126px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.site-footer p {
  margin: 0;
  color: var(--muted-2);
  font-size: 11px;
}

.site-footer p a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer nav {
  justify-self: end;
  display: flex;
  gap: 20px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    gap: 42px;
  }

  .studio-frame {
    width: 790px;
  }

  .formats-grid,
  .shortcuts-grid,
  .faq-section {
    gap: 55px;
  }

  .panel-copy {
    column-gap: 30px;
    padding-inline: 35px;
  }

  .panel-visual {
    margin-inline: 35px;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 86px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 720px;
  }

  .assurance-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-product {
    width: calc(100% + 24px);
  }

  .studio-frame {
    width: 900px;
    transform: rotateY(-4deg) rotateX(1deg);
  }

  .flow-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .flow-grid > i {
    display: none;
  }

  .setup-grid {
    grid-template-columns: 1fr;
  }

  .setup-card {
    min-height: 300px;
  }

  .step-number {
    margin-bottom: 38px;
  }

  .split-heading,
  .formats-grid,
  .shortcuts-grid,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .workflow-console {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .workflow-tab {
    grid-template-columns: 24px 1fr;
  }

  .workflow-tab > i {
    display: none;
  }

  .panel-copy {
    grid-template-columns: 1fr;
  }

  .panel-copy ul {
    grid-column: 1;
    grid-row: auto;
    margin-top: 22px;
  }

  .anatomy-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr 1fr;
  }

  .anatomy-card {
    min-height: 280px;
  }

  .formats-intro {
    position: static;
  }

  .precision-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 720px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 30px, var(--shell));
  }

  .section {
    padding-block: 88px;
  }

  .nav-shell {
    height: 62px;
  }

  .brand-name {
    max-width: 190px;
  }

  .brand-divider,
  .brand-section {
    display: none;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 12px;
  }

  .hero {
    width: min(100% - 30px, var(--shell));
    min-height: 0;
    padding-block: 76px 72px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.75rem);
  }

  .hero-lede {
    font-size: 16px;
  }

  .assurance-list {
    grid-template-columns: 1fr;
  }

  .hero-product {
    width: 100%;
    margin-top: 12px;
  }

  .studio-frame {
    width: 760px;
    transform: scale(0.76) rotateY(-4deg);
    transform-origin: top left;
  }

  .hero-product {
    height: 415px;
  }

  .callout-one {
    top: -18px;
    left: 14px;
  }

  .callout-two {
    right: -8px;
    bottom: 5px;
  }

  .flow-grid {
    min-height: 105px;
    grid-template-columns: repeat(5, max-content);
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
  }

  .flow-grid > div {
    grid-template-columns: auto 1fr;
    min-width: 82px;
  }

  .flow-grid small {
    display: none;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading > p:last-child,
  .split-heading > p,
  .centered > p {
    font-size: 15px;
  }

  .setup-card {
    min-height: 340px;
    padding: 25px;
  }

  .step-proof,
  .file-row {
    right: 25px;
    left: 25px;
  }

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

  .setup-note > a {
    grid-column: 2;
  }

  .workflow-console {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .workflow-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(76px, 1fr));
    overflow-x: auto;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-tab {
    min-height: 70px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 8px 5px;
    border-bottom-color: transparent;
    text-align: center;
  }

  .workflow-tab > span:first-child {
    align-self: auto;
    padding: 0;
  }

  .workflow-tab small {
    display: none;
  }

  .panel-copy {
    padding: 33px 24px 28px;
  }

  .panel-copy h3 {
    font-size: 27px;
  }

  .panel-visual {
    min-height: 280px;
    margin: 0 18px 22px;
  }

  .visual-toolbar {
    overflow-x: auto;
  }

  .visual-toolbar b {
    white-space: nowrap;
  }

  .format-tables,
  .shortcut-list {
    grid-template-columns: 1fr;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .video-caption {
    grid-template-columns: 34px 1fr;
  }

  .video-caption > a {
    grid-column: 2;
  }

  .precision-grid {
    grid-template-columns: 1fr;
  }

  .precision-grid article {
    min-height: 260px;
  }

  .shortcut-list > div {
    grid-template-columns: 100px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 30px;
  }

  .site-footer nav {
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .brand-name {
    max-width: 130px;
  }

  .nav-cta {
    font-size: 0;
  }

  .nav-cta::before {
    content: "Open";
    font-size: 12px;
  }

  .nav-cta span {
    font-size: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .studio-frame {
    transform: scale(0.61) rotateY(-3deg);
  }

  .hero-product {
    height: 338px;
  }

  .floating-callout {
    min-width: 112px;
  }

  .callout-two {
    bottom: -2px;
  }

  .flow-grid {
    gap: 15px;
    padding-right: 15px;
  }

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

  .note-mark {
    display: none;
  }

  .setup-note > a {
    grid-column: 1;
  }

  .workflow-tabs {
    grid-template-columns: repeat(5, 72px);
  }

  .export-grid {
    grid-template-columns: 1fr;
  }

  .audio-copy {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .export-grid > div {
    min-height: 75px;
  }

  .format-row {
    grid-template-columns: 70px 1fr;
  }

  .final-cta {
    padding-block: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
