From bfa237d88e2cad659e8f46eb72fbd90668aaf594 Mon Sep 17 00:00:00 2001 From: Till JS Date: Mon, 13 Apr 2026 16:39:22 +0200 Subject: [PATCH] style(landing): make flow links subtler with underline instead of pills Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/mana/apps/landing/src/pages/features.astro | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/apps/mana/apps/landing/src/pages/features.astro b/apps/mana/apps/landing/src/pages/features.astro index edd40c825..99033f9db 100644 --- a/apps/mana/apps/landing/src/pages/features.astro +++ b/apps/mana/apps/landing/src/pages/features.astro @@ -856,35 +856,28 @@ const techUsps = [ } .flow-link { - color: #e2e8f0; + color: #cbd5e1; text-decoration: none; - padding: 2px 10px; - border-radius: 8px; - background: rgba(255, 255, 255, 0.05); - border: 1px solid rgba(255, 255, 255, 0.1); + border-bottom: 1px solid rgba(148, 163, 184, 0.3); transition: all 0.2s ease; - white-space: nowrap; font-weight: 500; } .flow-link:hover { - background: rgba(59, 130, 246, 0.15); - border-color: rgba(59, 130, 246, 0.4); color: #93c5fd; + border-bottom-color: rgba(59, 130, 246, 0.6); } .flow-link-tech { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.9375rem; color: #60a5fa; - background: rgba(59, 130, 246, 0.08); - border-color: rgba(59, 130, 246, 0.2); + border-bottom-color: rgba(59, 130, 246, 0.3); } .flow-link-tech:hover { - background: rgba(59, 130, 246, 0.2); - border-color: rgba(59, 130, 246, 0.5); color: #93c5fd; + border-bottom-color: rgba(59, 130, 246, 0.7); } /* ==================== USP Cards ==================== */