Website revamp: immersive descent redesign - #3
Open
ericgriffin wants to merge 8 commits into
Open
Conversation
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
…epth gauge) Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
…, gauge readout nowrap Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X
There was a problem hiding this comment.
Pull request overview
This PR revamps the homepage into a single-scroll “descent” experience, adding a scroll-driven ocean ambience layer while preserving the existing download/platform-detection behavior and anchor links.
Changes:
- Rewrites
index.htmlinto a six-zone narrative layout (Surface → Abyss) while preserving existing section anchors andscript.jsDOM hooks. - Replaces
styles.csswith a dark-only visual system + static CSS fallback gradient, and adds styling for the new ocean layers and depth gauge. - Adds
ocean.jsas a progressive-enhancement motion engine (water color interpolation, parallax layers, marine snow canvas, depth gauge, reveal animations) plus accompanying design/implementation docs.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
styles.css |
New dark-only visual system, ocean layer styling, gauge styling, and reduced-motion overrides. |
ocean.js |
New scroll-driven motion engine for water color/parallax/particles/gauge/reveals. |
index.html |
New six-zone homepage structure + new decorative ocean/gauge markup + loads ocean.js while keeping download hook IDs. |
docs/superpowers/specs/2026-07-24-website-revamp-design.md |
Design specification for the “Descent” concept, accessibility/perf goals, and degradation ladder. |
docs/superpowers/plans/2026-07-24-website-revamp.md |
Detailed implementation plan and verification checklist for the redesign. |
.gitignore |
Ignores OS/agent artifacts (e.g., .DS_Store, .superpowers/, .playwright-mcp/). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+150
to
+156
| if (!reducedMotion.matches) snow.step(depthFrac); | ||
| } | ||
| window.requestAnimationFrame(frame); | ||
| } | ||
|
|
||
| setupReveals(); | ||
| window.requestAnimationFrame(frame); |
Comment on lines
+56
to
+69
| <div class="gauge" id="depth-gauge" aria-hidden="true"> | ||
| <div class="gauge__ticks"> | ||
| <span class="gauge__tick" data-depth="0">0 m —</span> | ||
| <span class="gauge__tick" data-depth="5">5 —</span> | ||
| <span class="gauge__tick" data-depth="10">10 —</span> | ||
| <span class="gauge__tick" data-depth="15">15 —</span> | ||
| <span class="gauge__tick" data-depth="20">20 —</span> | ||
| <span class="gauge__tick" data-depth="25">25 —</span> | ||
| <span class="gauge__tick" data-depth="30">30 —</span> | ||
| <span class="gauge__tick" data-depth="35">35 —</span> | ||
| <span class="gauge__tick" data-depth="40">40 m —</span> | ||
| </div> | ||
| <div class="gauge__readout" id="depth-readout">0.0 m</div> | ||
| </div> |
Replace the seven January screenshots with recent June/July captures: dive detail with deco analytics, full-screen profile player, sites map with heatmap, dark-mode statistics, equipment sets, dive computer import wizard, and photo gallery. All resampled to 2400px wide with updated dimensions, alt text, and captions. Nav logo grows 30->46px and wordmark 14->21px. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SxFK5xQytpbxbq52PmxuH4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Full redesign of the homepage as an immersive "descent" — the page is one continuous dive from sunlit surface to seafloor, replacing the generic dark-SaaS look with a design built around depth.
#why,#screens,#features,#support,#download) preservedocean.js): scroll-driven water color, parallax rays/haze/bubbles, canvas marine snow that thins with depth, live depth gauge (0–40 m), IntersectionObserver section reveals — all in one rAF loop, fully disabled underprefers-reduced-motion, page fully functional with JS offscript.jsuntouched — release fetching and platform detection work unchanged (verified: "Download for macOS v1.6.0.114 · 54 MB" with active platform chip)Design spec and implementation plan included under
docs/superpowers/.Verification
Out of scope
/lightroomwalkthrough and OAuth callback pages (follow-up per spec).🤖 Generated with Claude Code
https://claude.ai/code/session_01ToiRgopmKn6u72fQmLzh1X