diff --git a/docs/app/core-concepts/interacting-with-elements.mdx b/docs/app/core-concepts/interacting-with-elements.mdx
index c098f088ee..294d780495 100644
--- a/docs/app/core-concepts/interacting-with-elements.mdx
+++ b/docs/app/core-concepts/interacting-with-elements.mdx
@@ -26,6 +26,119 @@ inform your testing strategy, and ship high-quality code with confidence.
:::
+## Visibility
+
+### Default Behavior
+
+Cypress checks a lot of things to determine an element's visibility. The
+following calculations factor in CSS translations and transforms.
+
+#### An element is considered hidden if:
+
+- Its `width` or `height` is `0`.
+- Its CSS property (or ancestors) is `visibility: hidden`.
+- Its CSS property (or ancestors) is `display: none`.
+- Its CSS property is `position: fixed` and it's offscreen or covered up.
+- Any of its ancestors **hides overflow**\*
+ - AND that ancestor has a `width` or `height` of `0`
+ - AND an element between that ancestor and the element is `position: absolute`
+- Any of its ancestors **hides overflow**\*
+ - AND that ancestor or an ancestor between it and that ancestor is its offset
+ parent
+ - AND it is positioned outside that ancestor's bounds
+- Any of its ancestors **hides overflow**\*
+ - AND the element is `position: relative`
+ - AND it is positioned outside that ancestor's bounds
+
+\***hides overflow** means it has `overflow: hidden`, `overflow-x: hidden`,
+`overflow-y: hidden`, `overflow: scroll`, or `overflow: auto`
+
+:::info
+
+Opacity
+
+Elements where the CSS property (or ancestors) is `opacity: 0` are considered
+hidden when
+[asserting on the element's visibility directly](/app/references/assertions#Visibility).
+
+However elements where the CSS property (or ancestors) is `opacity: 0` are
+considered actionable and any commands used to interact with the hidden element
+will perform the action.
+
+:::
+
+### Experimental Fast Visibility
+
+You can enable a faster visibility detection algorithm using [`experimentalFastVisibility`](/app/references/experiments#Experimental-Fast-Visibility).
+
+This algorithm is more accurate and less resource-intensive than the default behavior, but it has slightly different semantics.
+
+When `experimentalFastVisibility` is enabled, an element is considered hidden if:
+
+- Its `width` or `height` is `0`
+- Its computed CSS properties prevent it from being clicked on or visible:
+ - `visibility: hidden`
+ - `opacity: 0`
+ - `display: none`
+ - `pointer-events: none`
+- It is positioned fully outside of the browser viewport
+ - _this is a known compatibility issue with the legacy visibility algorithm_ when it comes to asserting visibility. It will be addressed during the course of this experiment.
+- It is fully covered or clipped by another element
+
+Keep up-to-date with the the progress of this experiment in the [Cypress repository](https://github.com/cypress-io/cypress/issues/33043).
+
+#### Limitations
+
+Experimental fast visibility is an experimental feature that is still under development. It is not yet fully compatible with the legacy visibility algorithm.
+
+- Shadow DOM is not yet supported. Tests that interact with Shadow DOM elements may fail or behave incorrectly.
+- Elements outside of the browser's viewport are not yet correctly identified as visible. Scroll elements into view before testing.
+
+#### Common Compatibility Issues
+
+When enabling fast visibility, you may encounter differences in how elements are detected. The fast algorithm provides more geometrically accurate visibility detection, which may reveal that elements previously considered visible are actually hidden.
+
+**Elements Outside Viewport**
+
+Elements positioned outside the viewport are now correctly identified as hidden. Scroll elements into view before testing:
+
+```javascript
+// Before
+cy.get('.off-screen-element').should('be.visible')
+
+// After
+cy.get('.off-screen-element').scrollIntoView().should('be.visible')
+```
+
+**Covered Elements**
+
+Elements covered by other elements are now correctly identified as hidden. Test the covering element or the user interaction that reveals the covered element:
+
+```javascript
+// Test the user action that reveals the element
+cy.get('.toggle-button').click()
+cy.get('.covered-element').should('be.visible')
+```
+
+**Zero-Dimension Containers**
+
+Containers with zero dimensions are now correctly identified as hidden. Test the child element instead of the container:
+
+```javascript
+// Test the child element that should be visible
+cy.get('.zero-dimension-container .child-element').should('be.visible')
+```
+
+**Elements with `pointer-events: none`**
+
+Elements with `pointer-events: none` may be detected as hidden when they are visible. Do not assert visibility on elements with `pointer-events: none`, as they cannot be interacted with.
+
+:::caution
+
+**Important:** If tests fail after enabling fast visibility, the fast algorithm is likely correct and tests should be updated to match the actual behavior.
+
+:::
+
## Actionability
Some commands in Cypress are for interacting with the DOM such as:
@@ -71,45 +184,6 @@ Whenever Cypress cannot interact with an element, it could fail at any of the
above steps. You will usually get an error explaining why the element was not
found to be actionable.
-### Visibility
-
-Cypress checks a lot of things to determine an element's visibility. The
-following calculations factor in CSS translations and transforms.
-
-#### An element is considered hidden if:
-
-- Its `width` or `height` is `0`.
-- Its CSS property (or ancestors) is `visibility: hidden`.
-- Its CSS property (or ancestors) is `display: none`.
-- Its CSS property is `position: fixed` and it's offscreen or covered up.
-- Any of its ancestors **hides overflow**\*
- - AND that ancestor has a `width` or `height` of `0`
- - AND an element between that ancestor and the element is `position: absolute`
-- Any of its ancestors **hides overflow**\*
- - AND that ancestor or an ancestor between it and that ancestor is its offset
- parent
- - AND it is positioned outside that ancestor's bounds
-- Any of its ancestors **hides overflow**\*
- - AND the element is `position: relative`
- - AND it is positioned outside that ancestor's bounds
-
-\***hides overflow** means it has `overflow: hidden`, `overflow-x: hidden`,
-`overflow-y: hidden`, `overflow: scroll`, or `overflow: auto`
-
-:::info
-
-Opacity
-
-Elements where the CSS property (or ancestors) is `opacity: 0` are considered
-hidden when
-[asserting on the element's visibility directly](/app/references/assertions#Visibility).
-
-However elements where the CSS property (or ancestors) is `opacity: 0` are
-considered actionable and any commands used to interact with the hidden element
-will perform the action.
-
-:::
-
### Disability
Cypress checks whether the `disabled` property is `true` on a
diff --git a/docs/app/references/assertions.mdx b/docs/app/references/assertions.mdx
index 1d9e463eea..13db1808b4 100644
--- a/docs/app/references/assertions.mdx
+++ b/docs/app/references/assertions.mdx
@@ -258,6 +258,14 @@ Watch the short video
["Multiple elements and should('be.visible') assertion"](https://www.youtube.com/watch?v=LxkrhUEE2Qk)
that shows how to correctly check the visibility of elements.
+:::info
+
+**Visibility Semantics**
+
+For detailed information about how Cypress determines element visibility, including the default behavior and the experimental fast visibility algorithm, see [Visibility](/app/core-concepts/interacting-with-elements#Visibility).
+
+:::
+
### Existence
```javascript
diff --git a/docs/app/references/changelog.mdx b/docs/app/references/changelog.mdx
index 8a74150597..71cd2189af 100644
--- a/docs/app/references/changelog.mdx
+++ b/docs/app/references/changelog.mdx
@@ -8,6 +8,10 @@ sidebar_label: Changelog
# Changelog
+## 15.8.0
+
+(TBD; Entry created to prevent broken links)
+
## 15.7.1
_Released 12/02/2025_
diff --git a/docs/app/references/error-messages.mdx b/docs/app/references/error-messages.mdx
index e92d3b5380..7d5737c475 100644
--- a/docs/app/references/error-messages.mdx
+++ b/docs/app/references/error-messages.mdx
@@ -238,7 +238,7 @@ are not.
You may see a variation of this message for 4 different reasons:
-1. The element is not visible
+1. The element is not [visible](/app/core-concepts/interacting-with-elements#Visibility)
2. The element is being covered by another element
3. The element's center is hidden from view
4. The element is disabled
diff --git a/docs/app/references/experiments.mdx b/docs/app/references/experiments.mdx
index 1116d7ed14..eb700689ab 100644
--- a/docs/app/references/experiments.mdx
+++ b/docs/app/references/experiments.mdx
@@ -38,6 +38,7 @@ configuration to Cypress.
| `experimentalModifyObstructiveThirdPartyCode` | `false` | Whether Cypress will search for and replace obstructive code in third party `.js` or `.html` files. NOTE: Setting this flag removes [Subresource Integrity (SRI)](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity). |
| `experimentalSourceRewriting` | `false` | Enables AST-based JS/HTML rewriting. This may fix issues caused by the existing regex-based JS/HTML replacement algorithm. See [#5273](https://github.com/cypress-io/cypress/issues/5273) for details. |
| `experimentalWebKitSupport` | `false` | Enable experimental support for running tests in WebKit. When set, installs of `playwright-webkit` will be detected and available in Cypress. See [Launching Browsers](/app/references/launching-browsers#WebKit-Experimental) for more information. |
+| `experimentalFastVisibility` | `false` | Enables a faster visibility detection algorithm using point sampling. This can significantly improve performance when interacting with complex DOM structures. See [Experimental Fast Visibility](/app/references/experiments#Experimental-Fast-Visibility) for more details. |
| `retries.experimentalStrategy` | N/A | Applies a strategy for test retries according to your "flake tolerance"; options are detect-flake-but-always-fail or detect-flake-and-pass-on-threshold. See [Experimental Retries](/app/references/experiments#Experimental-Flake-Detection-Features) for more details. |
| `retries.experimentalOptions` | N/A | Sets retries strategy-specific options like maxRetries, passesRequired, and stopIfAnyPassed. See [Experimental Retries](/app/references/experiments#Experimental-Flake-Detection-Features) for more details. |
@@ -124,6 +125,91 @@ modified HTML or JS value.
:::
+## Experimental Fast Visibility
+
+The `experimentalFastVisibility` option enables a faster visibility detection algorithm that uses point sampling instead of the legacy algorithm. This can significantly improve performance when interacting with complex DOM structures.
+
+### Benefits
+
+The fast visibility algorithm provides several advantages over the legacy algorithm:
+
+- **Better performance**: Constant-time in the best case, and bounded exponential in the worst case (when point sampling on a fully hidden element)
+- **Memory efficiency**: Reduces memory usage and prevents browser crashes during visibility checks
+- **Reduced layout thrashing**: Avoids repeated access of CSS properties that require layout recalculation
+- **Better coverage detection**: Can detect when an element is fully covered by positioned elements outside its ancestor tree
+
+### How It Works
+
+The fast visibility algorithm:
+
+1. Assumes `body` and `html` are always visible (consistent with current visibility behavior)
+2. Uses the built-in `checkVisibility` method as a first pass, with all options enabled
+3. For `