diff --git a/docs/encyclopedia/temporal.mdx b/docs/encyclopedia/temporal.mdx
index 65b41643bf..dce7ba229f 100644
--- a/docs/encyclopedia/temporal.mdx
+++ b/docs/encyclopedia/temporal.mdx
@@ -16,101 +16,46 @@ tags:
- Concepts
---
-Temporal is a scalable and reliable runtime for durable function executions called [Temporal Workflow Executions](/workflows#workflow-execution).
-
-Said another way, it's a platform that guarantees the [Durable Execution](#durable-execution) of your application code.
-
-It enables you to develop as if failures don't even exist.
-Your application will run reliably even if it encounters problems, such as network outages or server crashes, which would be catastrophic for a typical application.
-The Temporal Platform handles these types of problems, allowing you to focus on the business logic, instead of writing application code to detect and recover from failures.
-
-
-
-
The Temporal System
-
-
-
-
-
-
-## Durable Execution {#durable-execution}
-
-Durable Execution in the context of Temporal refers to the ability of a Workflow Execution to maintain its state and progress even in the face of failures, crashes, or server outages.
-This is achieved through Temporal's use of an [Event History](/workflows#event-history), which records the state of a Workflow Execution at each step.
-If a failure occurs, the Workflow Execution can resume from the last recorded event, ensuring that progress isn't lost.
-This durability is a key feature of Temporal Workflow Executions, making them reliable and resilient.
-It enables application code to execute effectively once and to completion, regardless of whether it takes seconds or years.
-## What is the Temporal Platform? {#temporal-platform}
+Temporal is a developer first, open source platform designed to make your application code durable and resilient to failures.
-The Temporal Platform consists of a [Temporal Service](/clusters) and [Worker Processes](/workers#worker-process).
-Together these components create a runtime for Workflow Executions.
-
-The Temporal Platform consists of a supervising software typically called the [Temporal Service](/clusters) and application code bundled as Worker Processes.
-Together these components create a runtime for your application.
-
-
-
-
The Temporal Platform
-
-
-
-
-
-
-A Temporal Service consists of the Temporal Server and a database.
-
-Our software as a service (SaaS) offering, Temporal Cloud, offers an alternative to hosting the Temporal Service yourself.
-
-Worker Processes are hosted and operated by you and execute your code. Workers run using one of our SDKs.
-
-
-
-
Basic component topology of the Temporal Platform
-
-
-
-
-
+The most valuable mission critical workloads in any software are long running and tie together multiple services.
+With Temporal, your application will run reliably even if it encounters problems, such as network outages or server crashes, which would be catastrophic for a typical application.
-## What is a Temporal Application? {#temporal-application}
+Temporal allows you to develop your applications as if failures don’t exist. Instead of writing complex error-handling code and application code to detect and recover from failures, you can focus entirely on your business logic.
+Temporal takes care of the heavy lifting, guaranteeing that your workflows are executed to completion - whether they run for seconds, days, or even years.
+
+## Build Resilient Applications at Scale: Durable Execution {#durable-execution}
-A Temporal Application is a set of [Temporal Workflow Executions](/workflows#workflow-execution).
-Each Temporal Workflow Execution has exclusive access to its local state, executes concurrently to all other Workflow Executions, and communicates with other Workflow Executions and the environment via message passing.
+At the heart of Temporal is the concept of Durable Execution.
+It is the guarantee that, once started, your application will run to completion despite adverse conditions (such as a crash or hardware failure) that would otherwise cause it to fail.
+Durable Execution makes your applications invincible and allows your applications to be resilient and durable by default.
-A Temporal Application can consist of millions to billions of Workflow Executions.
-Workflow Executions are lightweight components.
-A Workflow Execution consumes few compute resources; in fact, if a Workflow Execution is suspended, such as when it is in a waiting state, the Workflow Execution consumes no compute resources at all.
+This durability is achieved through Event History which keeps a record of each step in a Workflow Execution.
+If something goes wrong, the Workflow can resume exactly where it left off at its last recorded event, without losing any progress.
+This durability makes your applications reliable and resilient, allowing you to execute code exactly once and to completion, regardless of how long it takes.
-**Reentrant Process**
+**Ready to build your first invincible application?**
+Join a global community of developers embracing reliability and scalability by default.
+Whether you self-host Temporal to harness the power of open source or leverage Temporal Cloud for hassle-free scalability and management, you can build applications with unmatched reliability.
-A Temporal Workflow Execution is a Reentrant Process. A Reentrant Process is resumable, recoverable, and reactive.
-- Resumable: Ability of a process to continue execution after execution was suspended on an _awaitable_.
-- Recoverable: Ability of a process to continue execution after execution was suspended on a _failure_.
-- Reactive: Ability of a process to react to external events.
+
-Therefore, a Temporal Workflow Execution executes a [Temporal Workflow Definition](/workflows#workflow-definition), also called a Temporal Workflow Function, your application code, exactly once and to completion—whether your code executes for seconds or years, in the presence of arbitrary load and arbitrary failures.
+## What is a Temporal Application? {#temporal-application}
+
+:::tip
+💡 To learn more about the basics, check out the [Understanding Temporal](/evaluate/understanding-temporal) page.
+:::
-## What is a Failure? {#failure}
+A Temporal Application is made up of lightweight Workflow Executions.
+These executions can run concurrently, manage their state independently, and scale from millions to billions and all while consuming minimal resources.
+Even if a Workflow Execution pauses, it doesn’t use compute resources until it resumes.
+Each Workflow Execution runs exactly once, to completion, no matter how long it takes or what failures occur.
-[Temporal Failures](/references/failures) are representations (in the SDKs and Event History) of various types of errors that occur in the system.
+## What is the Temporal Platform? {#temporal-platform}
-Failure handling is an essential part of development.
-For more information, including the difference between application-level and platform-level failures, see [Handling Failure From First Principles](https://dominik-tornow.medium.com/handling-failures-from-first-principles-1ed976b1b869).
-For the practical application of those concepts in Temporal, see [Failure Handling in Practice](https://temporal.io/blog/failure-handling-in-practice).
+The Temporal Platform is the foundation behind durable and scalable Workflow Executions.
+It combines the Temporal Service, which supervises and manages Workflow Executions, and Worker Processes, which run your Workflow and Activity code with one of the Temporal SDKs.
+With options to self-host or use Temporal Cloud, the platform ensures your applications are resilient, no matter the scale or complexity.
-For languages that throw (or raise) errors (or exceptions), throwing an error that is not a Temporal Failure from a Workflow fails the Workflow Task (and the Task will be retried until it succeeds), whereas throwing a Temporal Failure (or letting a Temporal Failure propagate from Temporal calls, like an [Activity Failure](/references/failures#activity-failure) from an Activity call) fails the Workflow Execution.
-For more information, see [Application Failure](/references/failures#application-failure).
diff --git a/docs/glossary.md b/docs/glossary.md
index d75845bc1e..6c9bb3a74f 100644
--- a/docs/glossary.md
+++ b/docs/glossary.md
@@ -204,9 +204,12 @@ Standby Namespace regions use replication to duplicate data and prevent data los
-#### [Failure](/temporal#failure)
+#### [Failure](/references/failures)
-Temporal Failures are representations of various types of errors that occur in the system.
+Temporal Failures are representations of various types of errors that occur in the system. For the practical application of those concepts in Temporal, see [Failure Handling in Practice](https://temporal.io/blog/failure-handling-in-practice).
+
+For languages that throw (or raise) errors (or exceptions), throwing an error that is not a Temporal Failure from a Workflow fails the Workflow Task (and the Task will be retried until it succeeds), whereas throwing a Temporal Failure (or letting a Temporal Failure propagate from Temporal calls, like an [Activity Failure](/references/failures#activity-failure) from an Activity call) fails the Workflow Execution.
+For more information, see [Application Failure](/references/failures#application-failure).
diff --git a/static/img/intro-temporal/100opensource.png b/static/img/intro-temporal/100opensource.png
new file mode 100644
index 0000000000..5bd19945c3
Binary files /dev/null and b/static/img/intro-temporal/100opensource.png differ
diff --git a/static/img/intro-temporal/deployinyoureviron_diagram.avif b/static/img/intro-temporal/deployinyoureviron_diagram.avif
new file mode 100644
index 0000000000..4c646763b8
Binary files /dev/null and b/static/img/intro-temporal/deployinyoureviron_diagram.avif differ
diff --git a/static/img/intro-temporal/workflow-execution-wide.png.avif b/static/img/intro-temporal/workflow-execution-wide.png.avif
new file mode 100644
index 0000000000..f8ef55ce9b
Binary files /dev/null and b/static/img/intro-temporal/workflow-execution-wide.png.avif differ