# Goal

Extract the main heading and description text from the page.

# Output Fields

When setting outputs, use these exact field names:
- `ctx.outputs.heading` - The main heading text (from h1)
- `ctx.outputs.description` - The description paragraph text
- `ctx.outputs.status` - Final status: "success" or "failure"

# Instructions

## Landing page

The page shows a heading and description.

1. Extract the main heading text from the h1 element.
2. Extract the description from the first paragraph.
3. Set `ctx.outputs.status = "success"`. Done.

## No content found

The page does not contain the expected elements.

1. Set `ctx.outputs.status = "failure"`. Done.
