diff --git a/src/routes/coming-soon.tsx b/src/routes/coming-soon.tsx index f6f4cb9..a5107d8 100644 --- a/src/routes/coming-soon.tsx +++ b/src/routes/coming-soon.tsx @@ -194,7 +194,9 @@ export default function ComingSoonPage() { .cs-form-note { font-size: 11px; - color: rgba(255,255,255,0.22); + /* Was 0.22 - close to invisible against the navy background. + 0.55 keeps it visually secondary but actually legible. */ + color: rgba(255,255,255,0.55); margin-bottom: 0; } .cs-form-success { @@ -215,7 +217,8 @@ export default function ComingSoonPage() { background: linear-gradient(to top, rgba(5,0,38,0.9) 0%, transparent 100%); } .cs-footer-copy { - font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; + /* Was 0.2 - same near-invisible issue as .cs-form-note. */ + font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; } .cs-footer-powered { display: flex; align-items: center; gap: 10px;