@import url("https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap");

@font-face {
  font-family: "Notae Sans";
  src: url("/fonts/NotaeSans-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Notae Sans";
  src: url("/fonts/NotaeSans-Italic-Variable.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color: #121826;
  background: #f6f2e9;
  font-family: "Notae Sans", "Avenir Next", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --ink: #121826;
  --muted: #626570;
  --paper: #f6f2e9;
  --paper-light: #fffdf7;
  --teal: #1195a7;
  --coral: #ed5b45;
  --yellow: #e8b52e;
  --line: rgba(18, 24, 38, 0.18);
  --shadow: 0 22px 60px rgba(18, 24, 38, 0.18);
  --content: min(1180px, calc(100% - 48px));
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
  letter-spacing: 0;
}

button,
input,
select {
  font-size: inherit;
}

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

img,
video,
canvas {
  display: block;
  max-width: 100%;
}

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

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 800;
  letter-spacing: 0;
}

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 233, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 1.9rem;
  font-weight: 800;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  box-shadow: 0 3px 8px rgba(18, 24, 38, 0.2);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #30333c;
  font-size: 0.92rem;
  font-weight: 700;
}

.topbar nav a,
.text-button,
.footer > a:last-child {
  position: relative;
}

.topbar nav a::after,
.footer > a:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--coral);
  transition: right 160ms ease;
}

.topbar nav a:hover::after,
.footer > a:last-child:hover::after {
  right: 0;
}

.nav-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  box-shadow: 0 5px 0 rgba(18, 24, 38, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta {
  justify-self: end;
  min-height: 44px;
  padding: 0 17px;
  font-size: 0.9rem;
  box-shadow: none;
}

.nav-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: var(--coral);
  box-shadow: 0 7px 0 rgba(18, 24, 38, 0.14);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  padding: 104px 24px 0;
  overflow: hidden;
  background: var(--paper);
}

.hero-copy-block {
  position: relative;
  z-index: 6;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 940px;
  margin: 0 auto;
  font-size: 5.8rem;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  font-family: "Permanent Marker", "Notae Sans", sans-serif;
  font-size: 0.88em;
  font-weight: 400;
  transform: rotate(-2deg);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.08em;
  bottom: -0.04em;
  height: 0.08em;
  background: var(--coral);
  transform: rotate(-1deg);
}

.hero-copy {
  max-width: 740px;
  margin: 30px auto 0;
  color: #464953;
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--ink);
  font-weight: 800;
}

.text-button svg {
  transition: transform 160ms ease;
}

.text-button:hover svg {
  transform: translateX(4px);
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-meta span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.flow-stage {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  min-height: 770px;
  margin: 72px auto 0;
  isolation: isolate;
}

.flow-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.flow-tag {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  position: absolute;
  left: 50%;
  top: 47%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px 0 8px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--paper-light);
  box-shadow: 5px 6px 0 rgba(18, 24, 38, 0.1);
  opacity: calc(1 - var(--flow));
  transform: translate(
      calc(-50% + var(--x) * (1 - var(--flow))),
      calc(-50% + var(--y) * (1 - var(--flow)))
    ) rotate(var(--r));
  transition: transform 100ms linear, opacity 100ms linear;
  white-space: nowrap;
}

.flow-tag span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 3px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
}

.flow-tag strong {
  font-size: 0.88rem;
}

.raw-takes { --x: -490px; --y: -230px; --r: -3deg; }
.story-notes { --x: 470px; --y: -220px; --r: 2deg; }
.transcript { --x: -500px; --y: 230px; --r: 2deg; }
.social-cuts { --x: 500px; --y: 220px; --r: -2deg; }

.story-notes span { background: #f0a999; }
.transcript span { background: #9bd7dd; }
.social-cuts span { color: #fff; background: #3474dd; }

.product-window {
  position: absolute;
  left: 50%;
  top: 58px;
  z-index: 4;
  width: min(900px, 78%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #090d16;
  box-shadow: var(--shadow), 0 0 0 1px rgba(18, 24, 38, 0.86);
  transform: translateX(-50%);
}

.product-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.62);
  background: #121722;
  font-size: 0.75rem;
}

.product-window-bar > span:first-of-type {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.product-window-bar > span:last-child {
  justify-self: end;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ed5b45;
}

.window-dots span:nth-child(2) { background: #e8b52e; }
.window-dots span:nth-child(3) { background: #13a36d; }

.product-window img {
  width: 100%;
  height: auto;
}

.delivery-strip {
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(820px, 76%);
  border: 1.5px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper-light);
  box-shadow: 8px 10px 0 rgba(18, 24, 38, 0.12);
  transform: translateX(-50%);
}

.delivery-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 54px;
  padding: 0 10px;
  color: #30333c;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.delivery-strip span + span {
  border-left: 1px solid var(--line);
}

.delivery-strip svg {
  color: var(--teal);
  flex: 0 0 auto;
}

.workflow-steps {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: var(--content);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.workflow-steps > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  padding: 32px 28px;
}

.workflow-steps > div + div {
  border-left: 1px solid var(--ink);
}

.workflow-steps span {
  grid-row: 1 / span 2;
  font-family: "Permanent Marker", "Notae Sans", sans-serif;
  color: var(--coral);
  font-size: 1.4rem;
}

.workflow-steps strong {
  font-size: 1.1rem;
}

.workflow-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.workspace-section,
.audience-section,
.faq-section {
  width: var(--content);
  margin: 0 auto;
  padding: 116px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.film-copy h2,
.pricing-copy h2,
.trial-copy h2 {
  font-size: 4.2rem;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p:last-child,
.film-copy > p:last-child,
.pricing-copy > p:last-child,
.trial-copy > p:last-of-type {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.workspace-tabs {
  display: flex;
  align-items: stretch;
  gap: 2px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.workspace-tabs button {
  position: relative;
  display: inline-flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 16px;
  border: 0;
  border-bottom: 4px solid transparent;
  color: #6d7079;
  background: transparent;
  font-weight: 800;
}

.workspace-tabs button:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
}

.workspace-tabs button.active {
  color: var(--ink);
  border-bottom-color: var(--tab-accent);
}

.workspace-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 54px;
  align-items: center;
  min-height: 600px;
  padding: 48px;
  color: #fff;
  background: var(--ink);
}

.workspace-visual {
  margin: 0;
}

.workspace-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

.workspace-visual figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.workspace-visual figcaption svg {
  color: var(--accent);
}

.workspace-copy {
  max-width: 500px;
}

.workspace-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workspace-copy h3 {
  font-size: 2.8rem;
  line-height: 1.05;
  text-wrap: balance;
}

.workspace-copy > p:not(.workspace-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.workspace-copy ul,
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.workspace-copy li,
.pricing-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.workspace-copy li svg,
.pricing-card li svg {
  margin-top: 2px;
  color: var(--accent, var(--teal));
}

.easy-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 28px;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
}

.easy-note svg {
  color: var(--accent);
}

.film-section {
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #090d15;
}

.film-copy {
  max-width: 840px;
  margin-bottom: 50px;
}

.film-copy .eyebrow {
  color: var(--yellow);
}

.film-copy > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.film-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #000;
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.film-label {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  color: #fff;
  background: rgba(9, 13, 21, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
}

.audience-section .section-heading {
  margin-bottom: 62px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.audience-grid article {
  padding: 42px 42px 46px 0;
}

.audience-grid article + article {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid var(--ink);
}

.audience-grid span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.audience-grid h3 {
  margin-top: 18px;
  font-size: 2rem;
  line-height: 1.12;
  text-wrap: balance;
}

.audience-grid p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.7fr);
  gap: 72px;
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: #e6f0ef;
}

.pricing-copy {
  max-width: 650px;
}

.pricing-card {
  padding: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  background: var(--paper-light);
  box-shadow: 10px 12px 0 rgba(18, 24, 38, 0.1);
}

.pricing-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  margin: 34px 0 28px;
}

.price strong {
  font-size: 5rem;
  line-height: 0.82;
}

.price span {
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.full-width {
  width: 100%;
  margin-top: 30px;
}

.mac-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.trial-band {
  padding: 116px 24px;
  color: #fff;
  background: var(--ink);
}

.trial-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: 70px;
  align-items: start;
  width: var(--content);
  margin: 0 auto;
}

.trial-copy {
  position: sticky;
  top: 110px;
}

.trial-copy .eyebrow {
  color: var(--yellow);
}

.trial-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.66);
}

.trial-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 700;
}

.trial-note svg {
  color: var(--teal);
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  padding: 32px;
  border-radius: 7px;
  color: var(--ink);
  background: var(--paper-light);
}

.trial-form label {
  display: grid;
  gap: 8px;
  color: #3c3f48;
  font-size: 0.84rem;
  font-weight: 800;
}

.trial-form input,
.trial-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  border: 1.5px solid rgba(18, 24, 38, 0.24);
  border-radius: 5px;
  color: var(--ink);
  background: #fff;
}

.trial-form input::placeholder {
  color: #8c8e96;
}

.trial-form input:focus,
.trial-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(17, 149, 167, 0.17);
}

.wide-field,
.submit-button,
.form-message {
  grid-column: 1 / -1;
}

.submit-button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-message.success { color: #08764d; }
.form-message.error { color: #a03333; }
.form-message a { color: #0b6d78; font-weight: 900; text-decoration: underline; }

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(480px, 1fr);
  gap: 80px;
  align-items: start;
}

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

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

.faq-list summary {
  min-height: 72px;
  padding: 24px 34px 24px 0;
  font-weight: 800;
}

.faq-list details p {
  max-width: 680px;
  margin: -8px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: var(--content);
  margin: 0 auto;
  padding: 34px 0 40px;
  border-top: 1px solid var(--ink);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

.footer > a:last-child {
  font-size: 0.86rem;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .hero h1 { font-size: 4.7rem; }
  .raw-takes { --x: -390px; }
  .story-notes { --x: 390px; }
  .transcript { --x: -410px; }
  .social-cuts { --x: 410px; }

  .workspace-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workspace-copy { max-width: 760px; }
  .workspace-visual { max-width: 820px; }
}

@media (max-width: 880px) {
  :root { --content: min(100% - 36px, 720px); }

  .topbar {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .topbar nav { display: none; }

  .hero { padding: 82px 18px 0; }
  .hero h1 { font-size: 4rem; }
  .hero-copy { font-size: 1.05rem; }

  .flow-stage {
    min-height: 650px;
    margin-top: 56px;
  }

  .product-window {
    top: 70px;
    width: 88%;
  }

  .raw-takes { --x: -280px; --y: -220px; }
  .story-notes { --x: 280px; --y: -210px; }
  .transcript { --x: -290px; --y: 190px; }
  .social-cuts { --x: 290px; --y: 180px; }

  .delivery-strip {
    width: 86%;
    bottom: 22px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps > div + div {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .section-heading h2,
  .film-copy h2,
  .pricing-copy h2,
  .trial-copy h2 {
    font-size: 3.3rem;
  }

  .workspace-section,
  .audience-section,
  .faq-section { padding: 88px 0; }

  .workspace-tabs { justify-content: flex-start; }
  .workspace-tabs button { flex: 0 0 auto; }

  .workspace-panel {
    min-height: 0;
    padding: 34px;
  }

  .pricing-section,
  .trial-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    gap: 46px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .pricing-card { max-width: 580px; }

  .trial-section { gap: 46px; }
  .trial-copy { position: static; }

  .faq-section { gap: 38px; }
  .faq-section .section-heading { margin-bottom: 0; }

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

  .footer p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 620px) {
  :root { --content: calc(100% - 30px); }

  .topbar { min-height: 70px; padding: 0 15px; }
  .brand { font-size: 1.55rem; }
  .brand img { width: 28px; height: 28px; }
  .nav-cta { min-height: 40px; padding: 0 12px; font-size: 0.78rem; }

  .hero { padding-top: 64px; }
  .hero .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: 3.15rem; line-height: 1.02; }
  .hero-copy { margin-top: 24px; font-size: 1rem; }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .hero-actions .primary-button { width: 100%; }
  .text-button { justify-content: center; }
  .hero-meta { flex-wrap: wrap; gap: 10px; }
  .hero-meta span { padding-left: 10px; }

  .flow-stage {
    min-height: 490px;
    margin-top: 48px;
  }

  .product-window {
    top: 92px;
    width: 100%;
  }

  .product-window-bar {
    grid-template-columns: 1fr 1fr;
    min-height: 40px;
    padding: 0 10px;
  }

  .window-dots { display: none; }
  .product-window-bar > span:first-of-type { justify-self: start; }
  .product-window-bar > span:last-child { justify-self: end; }

  .raw-takes { --x: -94px; --y: -190px; }
  .story-notes { --x: 94px; --y: -190px; }
  .transcript,
  .social-cuts { display: none; }

  .flow-tag {
    min-height: 38px;
    padding-right: 10px;
    gap: 7px;
  }

  .flow-tag span { width: 24px; height: 24px; font-size: 0.62rem; }
  .flow-tag strong { font-size: 0.72rem; }

  .delivery-strip {
    bottom: 4px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .delivery-strip span {
    min-height: 44px;
    font-size: 0.7rem;
  }

  .delivery-strip span:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .delivery-strip span:nth-child(4) { border-top: 1px solid var(--line); }

  .workflow-steps > div { padding: 24px 18px; }

  .workspace-section,
  .audience-section,
  .faq-section { padding: 76px 0; }

  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .film-copy h2,
  .pricing-copy h2,
  .trial-copy h2 { font-size: 2.65rem; }

  .section-heading > p:last-child,
  .film-copy > p:last-child,
  .pricing-copy > p:last-child,
  .trial-copy > p:last-of-type { font-size: 0.98rem; }

  .workspace-tabs button {
    min-height: 52px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .workspace-panel { padding: 22px; gap: 28px; }
  .workspace-copy h3 { font-size: 2.1rem; }

  .film-section { padding: 76px 15px; }
  .film-copy { margin-bottom: 34px; }
  .film-label { top: 10px; left: 10px; min-height: 32px; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-grid article,
  .audience-grid article + article { padding: 30px 0; }
  .audience-grid article + article { border-top: 1px solid var(--ink); border-left: 0; }
  .audience-grid h3 { font-size: 1.65rem; }

  .pricing-section { padding: 76px 15px; }
  .pricing-card { padding: 26px 22px; }
  .pricing-topline { align-items: flex-start; }
  .price strong { font-size: 4.3rem; }

  .trial-band { padding: 76px 15px; }
  .trial-form { grid-template-columns: 1fr; padding: 22px; }
  .trial-form label,
  .wide-field,
  .submit-button,
  .form-message { grid-column: 1; }

  .faq-list summary { padding-right: 18px; }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0 34px;
  }

  .footer p { grid-column: 1; grid-row: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow-tag,
  .nav-cta,
  .primary-button,
  .text-button svg,
  .topbar nav a::after,
  .footer > a:last-child::after { transition: none; }
}
