From 0b07b2a8f6cd32be8ea1caa6e4f6499317434332 Mon Sep 17 00:00:00 2001 From: Arlind Ukshini Date: Fri, 24 Apr 2026 11:00:19 +0200 Subject: [PATCH] entrance: "Backed by Innovationsfonden" below the welcome-logo A small supporter lockup (uppercase "Backed by" + redrawn Innovationsfonden wordmark, same treatment as the hero's .support block) sits directly under the fixed welcome-logo at left:75%, ~45px below the logo's centre. Fades in with the welcome step via the same body:has(#step-welcome.is-active) trigger the logo uses, hidden on the email step and on narrow viewports. Co-Authored-By: Claude Opus 4.7 (1M context) --- public/entrance.html | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/public/entrance.html b/public/entrance.html index c94efae..ee861ed 100644 --- a/public/entrance.html +++ b/public/entrance.html @@ -148,6 +148,35 @@ opacity: 0.92; } + /* "Backed by Innovationsfonden" — sits directly beneath the fixed + welcome-logo at the same horizontal centre (left:75%). Fades in + with the welcome step (same trigger as the logo above it). */ + .welcome-backer { + position: fixed; + /* welcome-logo is centred at top:50% with width 280px and h:~46px, + so the bottom edge is ~50% + 23px. This sits ~22px below that. */ + top: calc(50% + 45px); + left: 75%; + transform: translate(-50%, 0); + display: inline-flex; + align-items: center; + gap: 10px; + font-family: "Manrope", system-ui, -apple-system, sans-serif; + font-size: 11px; + font-weight: 600; + letter-spacing: 0.18em; + text-transform: uppercase; + color: var(--ink-soft); + opacity: 0; + pointer-events: none; + z-index: 5; + transition: opacity 640ms var(--ease) 160ms; + } + .welcome-backer svg { height: 16px; width: auto; display: block; } + body:has(#step-welcome.is-active) .welcome-backer { + opacity: 0.85; + } + /* ───── Welcome ───── */ .welcome-title { font-family: "Newsreader", Georgia, "Times New Roman", serif; @@ -288,6 +317,7 @@ .welcome-title { font-size: 38px; } .welcome-body { font-size: 18px; } .welcome-logo { display: none; } + .welcome-backer { display: none; } } @@ -296,6 +326,18 @@ +