Date: 2025-10-26 Feature: rebrand-to-raise-company Status: Complete
Complete rebrand from “Arqi” (AI-powered Investor Relations platform) to “The Raise Company” (stealth fintech startup). Transformed the website from a feature-rich marketing page with email signup to an ultra-minimalist dark landing page with just company name and contact button.
User requested:
Design Approach: Complete visual redesign from colorful gradient to minimalist dark theme
Content Strategy: Stealth mode positioning
Modified Files:
_config.yml - Updated site metadata and configuration
index.html - Completely simplified page structure
assets/css/main.css - Complete visual redesign
CNAME - Fixed typo
CLAUDE.md - Updated project documentation
Complete Minimalism: Decided to hide rather than delete HTML elements (using CSS display: none) to make it easy to restore features later if needed
No JavaScript: Removed dependency on form submission JavaScript since contact is now a simple mailto: link
Dark Theme: Chose pure black (#0a0a0a) rather than dark gray for maximum contrast and modern feel
Contact Method: Used mailto: link instead of contact form to keep implementation simple and avoid email backend setup
Typography: Maintained Inter font from original design for consistency with modern SaaS aesthetics
Responsive Design: Kept existing responsive breakpoints but simplified rules to only adjust logo size and button padding
Manual testing recommended:
No new dependencies added. Existing Jekyll stack maintained:
Potential enhancements when coming out of stealth:
CSS Architecture: Used display: none strategy to hide elements:
.tagline { display: none; }.description { display: none; }.features { display: none; }.footer { display: none; }This approach allows easy restoration of sections by removing the display rule.
Color Palette:
#0a0a0a (near-black)#ffffff (white)rgba(255, 255, 255, 0.2) (20% white)rgba(255, 255, 255, 0.4) (40% white)rgba(255, 255, 255, 0.05) (5% white)Layout Structure:
<div class="hero">
<div class="container">
<div class="hero-content">
<div class="logo"><h1>The Raise Company</h1></div>
<div class="cta-section">
<a href="mailto:beste@theraisecompany.ai" class="contact-button">Contact</a>
</div>
</div>
</div>
</div>
Domain Configuration:
/raise-ai-marketing-website for GitHub Pages path routing