diff --git a/content/pages/use-cases/large-databases.md b/content/pages/use-cases/large-databases.md
new file mode 100644
index 00000000000..c1d1794f3c9
--- /dev/null
+++ b/content/pages/use-cases/large-databases.md
@@ -0,0 +1,134 @@
+---
+title: 'Postgres for Large Databases'
+subtitle: Restore instantly, deploy lightweight replicas, and test on environments that always match production - even as your Postgres grows to TBs
+summary: >-
+ Why conventional Postgres becomes operationally heavy as it grows into the
+ multi-TB range, how Lakebase architecture makes restore, branching, and
+ replicas independent of data size, and what that means for cost and recovery
+ confidence on large production databases.
+enableTableOfContents: true
+updatedOn: '2026-08-15T23:20:00.000Z'
+image: '/images/social-previews/use-cases/large-databases.jpg'
+---
+
+
+
+
+On a conventional Postgres instance, compute and storage live on the same machine. Past a few hundred gigabytes, this monolithic design starts to hurt operations: restores take hours, replicas duplicate storage, and it becomes too painful to keep staging and development environments in sync with production.
+
+Lakebase Postgres runs on a different architecture, where storage is versioned and shared and compute is disposable. This makes running restores, keeping up to date environments, and replicating instances lightweight metadata operations rather than serious DBA events.
+
+- **Instant restores** - Branch from any point in the [history window](/docs/introduction/history-window). Restore time does not grow with database size
+- **Realistic environments** - Staging and development start from production state in seconds, without copying terabytes
+- **Lightweight replicas** - Read replicas are compute only. They share storage with the primary and scale independently
+- **Programmatic** - The same operations are available through the API, the CLI, and agents. Nobody has to babysit a dump and restore
+
+The recovery numbers on this page come from the [Impact of Postgres restores survey](/restores-survey), where we asked 50 developers managing 1TB+ production databases about failures, downtime, and business impact.
+
+
+## Large databases turn every ops task into a project
+
+Legacy OLTP Postgres is a monolith. The Postgres process and its disk live together, so the only way to get a second environment is to stand up a second machine with a full copy of the data on it. That works when the database is small; at multi-TB scale, it becomes a big project.
+
+Restores take hours because snapshot plus WAL replay has to rebuild the whole volume, replicas are expensive because each one carries its own storage. Keeping staging in sync with production gets more and more painful.
+
+
+
In short
+
A multi-TB Postgres shouldn't turn every restore, replica, and staging environment a big DBA event.
+
+
+## Your DB will break. Legacy infra sets your team for failure
+
+Failures on large Postgres databases are not rare events, and recovery is rarely quick.
+
+
+
+
+
+_Source: [Impact of Postgres restores survey](/restores-survey), based on 50 developers running 1TB+ Postgres in production._
+
+The cost of those hours lands well outside the incident channel:
+
+- **40%** reported significant business interruption. Only **8%** said the incident caused little stress
+- **52%** saw negative customer feedback. **48%** got a spike in support cases. **26%** dealt with SLA breaches and penalties
+- **72%** felt only somewhat confident in their ability to recover quickly. Just **21%** felt very confident
+
+Snapshot plus WAL replay gets slower as the database grows. High availability standbys help with infrastructure failure, but they don't help when someone drops a table, when data is corrupted, or when the standby itself is behind. **68% of teams** put faster point-in-time recovery on their wishlist.
+
+## How the Lakebase architecture simplifies Postgres operations
+
+Recovery and replication stops being a big problem once compute and storage stop living on the same machine. On a conventional Postgres instance, those two layers are glued together - moving to a different size, a different environment, or a different point in time means moving the data (many TBs when the database is large).
+
+Lakebase Postgres, built on the [lakebase architecture](https://neon.com/docs/introduction/architecture-overview), works differently - it splits the monolith apart. Compute is a stateless Postgres process where queries run; storage is a separate, distributed engine that keeps data on shared object storage and writes copy-on-write, versioned by WAL. Every change creates a new page version that can be referenced, instead of overwriting the old one.
+
+
+
+Since storage is shared and versioned, starting a new compute against an existing version of the data is a trivial operation. Database size stops deciding how long an operation takes - it is not a factor.
+
+- A **restore** is now a branch from a past version of storage
+- A **staging or development environment** is now a branch from the current version
+- A **read replica** is simply another compute pointed at the same storage
+- All of it is available through an **API**, so agents and pipelines can do the work a DBA used to do by hand
+
+
+- [Architecture overview](/docs/introduction/architecture-overview) - how compute, storage, and the WAL fit together
+- [Instantly copy TB-size datasets: the magic of copy-on-write](/blog/instantly-copy-tb-size-datasets-the-magic-of-copy-on-write) - why branch and restore time don't grow with size
+- [Recover large Postgres databases](/blog/recover-large-postgres-databases) - how instant PITR compares to snapshot plus WAL replay
+
+
+## Restore Postgres in seconds, even at multi-TB scale
+
+Lakebase Postgres retains history for each branch within its [history window](/docs/introduction/history-window). You pick a timestamp, create a branch from that moment, and get the exact schema and data as of then, without rolling production back and without replaying WAL.
+
+
+
+That covers the recovery paths teams need after something goes wrong:
+
+- **Recover lost data** - Branch from just before a table was dropped, pull the rows you need, and copy them back into production
+- **Undo a bad migration** - Branch from before the migration ran, inspect or re-run it in isolation, and leave production serving traffic
+- **Audit a past state** - Inspect a historical point for an incident review while the live branch keeps going
+
+The restore itself is instantaneous. The UI says so because the architecture makes it true: nothing is being copied.
+
+
+
+## Staging and development always look like production - without maintenance work
+
+The same property that makes restore cheap also makes realistic non-production environments affordable at multi-TB scale. A staging branch starts from production state in seconds. A developer branch does the same. Neither one duplicates the storage of the parent. Idle compute [scales to zero](/docs/introduction/scale-to-zero), so forgotten environments stop accumulating cost.
+
+That is the opposite of the conventional pattern, where a realistic staging database means another full-size instance, another backup schedule, and another sync job that always drifts. Past a few hundred gigabytes, most teams stop trying. On Neon, the environment is cheap enough to create, use, and delete as part of the workflow, including from CI and from agents.
+
+For the full set of patterns (one branch per developer, per pull request, per preview, per test run), see [Branching workflows on Neon](/use-cases/branching-workflows).
+
+## Deploy read replicas without copying data
+
+Shared storage is also why replicas stay light. On a provisioned platform, a read replica usually means a second machine with a second copy of the storage. At multi-TB scale that doubles the storage bill, and creation time grows with the size of the dataset.
+
+On Neon, a [read replica](/docs/introduction/read-replicas) is another compute pointed at the same storage as the primary. It doesn't replicate or duplicate data. Creation takes seconds regardless of database size. Each replica autoscales on its own, and idle replicas can scale to zero.
+
+
+
+That makes replicas useful for more than horizontal read scale-out. Offload analytics, ad-hoc queries, and reporting onto a replica without touching primary performance, and without paying for another multi-TB volume to host them.
+
+## Ops that used to need a DBA are now an API call
+
+Because restore, branching, and replicas are cheap and fast, they stop being special procedures and start being things you can automate. Every operation is available through the [Neon API](/docs/reference/api) and the CLI:
+
+- Create a branch from a timestamp when a deploy goes wrong
+- Spin up a staging branch for a preview environment, then delete it when the pull request closes
+- Stand up a read replica for a reporting job and tear it down when the job finishes
+- Let an agent open a branch, run a migration against real data, and throw the branch away
+
+None of that requires someone to provision storage, wait on a restore, or keep a standby warm. The operational surface area of a large database shrinks to the same tools a small database already uses.
+
+## Your costs shrink too
+
+The Lakebase architecture also changes the bill. On a conventional platform, every environment and every replica multiplies storage. Teams running multi-region production plus development often end up paying for the same terabytes several times over. Storage volumes that grow usually can't shrink, so even when cold data moves out, the volume (and the invoice) stay large. Snapshots become the only realistic backup strategy at that size, and they are both expensive and slow to restore from.
+
+
+
+On Neon, production, development, and extra read capacity share one copy of the data. Branches and replicas add compute, not storage. Idle compute scales to zero. Storage bills for what you're actually storing, and restore no longer depends on maintaining expensive snapshots as the only escape hatch.
+
+
+
+
diff --git a/public/images/social-previews/use-cases/large-databases.jpg b/public/images/social-previews/use-cases/large-databases.jpg
new file mode 100644
index 00000000000..1edcc8ad5a7
Binary files /dev/null and b/public/images/social-previews/use-cases/large-databases.jpg differ
diff --git a/public/use-cases/large-databases/lakebase-architecture.jpg b/public/use-cases/large-databases/lakebase-architecture.jpg
new file mode 100644
index 00000000000..94cfc583f54
Binary files /dev/null and b/public/use-cases/large-databases/lakebase-architecture.jpg differ
diff --git a/public/use-cases/large-databases/one-step-restore.jpg b/public/use-cases/large-databases/one-step-restore.jpg
new file mode 100644
index 00000000000..4a63e1d5371
Binary files /dev/null and b/public/use-cases/large-databases/one-step-restore.jpg differ
diff --git a/public/use-cases/large-databases/read-replicas.png b/public/use-cases/large-databases/read-replicas.png
new file mode 100644
index 00000000000..f406ca4feb1
Binary files /dev/null and b/public/use-cases/large-databases/read-replicas.png differ
diff --git a/public/use-cases/large-databases/restore-branch-diagram.png b/public/use-cases/large-databases/restore-branch-diagram.png
new file mode 100644
index 00000000000..72d9f71a5ce
Binary files /dev/null and b/public/use-cases/large-databases/restore-branch-diagram.png differ
diff --git a/public/use-cases/large-databases/restore-from-history.jpg b/public/use-cases/large-databases/restore-from-history.jpg
new file mode 100644
index 00000000000..ec2212a5a62
Binary files /dev/null and b/public/use-cases/large-databases/restore-from-history.jpg differ
diff --git a/public/use-cases/large-databases/survey-critical-failures.png b/public/use-cases/large-databases/survey-critical-failures.png
new file mode 100644
index 00000000000..5681be6f8bb
Binary files /dev/null and b/public/use-cases/large-databases/survey-critical-failures.png differ
diff --git a/public/use-cases/large-databases/survey-downtime.png b/public/use-cases/large-databases/survey-downtime.png
new file mode 100644
index 00000000000..19a0c734185
Binary files /dev/null and b/public/use-cases/large-databases/survey-downtime.png differ