REALM Bio – Expanding Global Access
/* Core branding variables */
:root {
--font-primary: 'ITC Avant Garde Std', 'Avant Garde', Helvetica, Arial, sans-serif;
--font-secondary: 'Montserrat', sans-serif;
--color-primary: #15385f; /* Brand Navy Blue */
--color-accent: #a31734; /* REALM Red */
--color-text: #333333; /* Dark Gray */
--color-light: #f8f9fa; /* Light background */
}
body {
margin: 0;
font-family: var(--font-secondary);
color: var(--color-text);
background: var(--color-light);
line-height: 1.6;
}
.hero {
padding: 100px 20px;
text-align: center;
background: linear-gradient(135deg, #4a90e2, #6a4c93);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('data:image/svg+xml,') repeat;
z-index: 1;
}
.hero > * {
position: relative;
z-index: 2;
}
.hero h1 {
font-family: var(--font-primary);
font-size: 3rem;
color: #ffffff;
margin-bottom: 10px;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.hero .brand-red {
color: var(--color-accent);
}
.hero .tagline {
font-family: var(--font-primary);
font-size: 1.5rem;
color: #ffffff;
margin-bottom: 20px;
opacity: 0.95;
}
.hero p {
font-family: var(--font-secondary);
font-size: 1.2rem;
color: #ffffff;
max-width: 600px;
margin: 0 auto 40px;
opacity: 0.9;
}
.btn {
display: inline-block;
margin: 0 10px 10px;
padding: 15px 30px;
text-decoration: none;
border-radius: 8px;
font-family: var(--font-primary);
font-size: 1rem;
color: #ffffff;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn:first-of-type {
background: rgba(255,255,255,0.2);
border: 2px solid rgba(255,255,255,0.3);
}
.btn:first-of-type:hover {
background: rgba(255,255,255,0.3);
transform: translateY(-2px);
}
.btn:last-of-type {
background: rgba(255,255,255,0.9);
color: var(--color-primary);
}
.btn:last-of-type:hover {
background: #ffffff;
transform: translateY(-2px);
}
.progress-bar {
max-width: 400px;
margin: 40px auto 20px;
background: rgba(255,255,255,0.2);
border-radius: 20px;
height: 8px;
overflow: hidden;
}
.progress-fill {
background: rgba(255,255,255,0.8);
height: 100%;
width: 75%;
border-radius: 20px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.8; }
50% { opacity: 1; }
}
.progress-text {
color: rgba(255,255,255,0.9);
font-size: 0.9rem;
margin-top: 10px;
}
.preview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 80px 20px;
max-width: 1200px;
margin: 0 auto;
}
.card {
background: #ffffff;
padding: 40px 30px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
text-align: center;
border-top: 4px solid var(--color-accent);
position: relative;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(163, 23, 52, 0.15);
}
.card-icon {
font-size: 3rem;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.card h3 {
font-family: var(--font-primary);
font-size: 1.5rem;
margin: 0 0 15px;
color: var(--color-primary);
}
.card p {
font-family: var(--font-secondary);
font-size: 1rem;
margin: 0 0 20px;
line-height: 1.6;
}
.badge {
display: inline-block;
padding: 8px 16px;
font-family: var(--font-primary);
font-size: 0.85rem;
font-weight: 600;
color: #ffffff;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
border-radius: 20px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.social {
text-align: center;
padding: 80px 20px;
background: #ffffff;
}
.social h2 {
font-family: var(--font-primary);
font-size: 2rem;
color: var(--color-primary);
margin-bottom: 20px;
}
.social p {
font-size: 1.1rem;
margin-bottom: 30px;
color: var(--color-text);
}
.subscribe-form {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
flex-wrap: wrap;
max-width: 500px;
margin: 0 auto;
}
.subscribe-form input[type="email"] {
padding: 15px 20px;
flex: 1;
min-width: 250px;
border: 2px solid #e9ecef;
border-radius: 8px;
font-family: var(--font-secondary);
font-size: 1rem;
transition: border-color 0.3s ease;
}
.subscribe-form input[type="email"]:focus {
outline: none;
border-color: var(--color-primary);
}
.subscribe-form button {
padding: 15px 30px;
border: none;
border-radius: 8px;
background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
color: #ffffff;
font-size: 1rem;
font-family: var(--font-primary);
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.subscribe-form button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(163, 23, 52, 0.3);
}
footer {
background: var(--color-text);
color: #ffffff;
text-align: center;
padding: 40px 20px;
font-family: var(--font-secondary);
font-size: 0.9rem;
}
footer a {
color: #ffffff;
margin: 0 10px;
text-decoration: none;
font-family: var(--font-primary);
transition: color 0.3s ease;
}
footer a:hover {
color: var(--color-accent);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.2rem;
}
.hero .tagline {
font-size: 1.2rem;
}
.preview-grid {
grid-template-columns: 1fr;
padding: 60px 20px;
}
.subscribe-form {
flex-direction: column;
align-items: stretch;
}
.subscribe-form input[type="email"] {
min-width: auto;
}
}
REALM Bio
Amplifying Access
We're building comprehensive resources on our global rollout, innovative capabilities, and the teams making advanced therapies accessible worldwide.
New content launching soon
Follow Our Journey
Get Updates
🌍
Global Deployment Map
Interactive timeline showing our expansion across regions, with detailed deployment schedules and key therapeutic focus areas.
Coming Soon
🏢
Our Companies
Deep dive into REALM Bio, Boston Labs, and our portfolio companies—their capabilities, expertise, and role in the unified platform.
Coming Soon
💡
Innovation Showcase
Explore our ARC2 product line, proprietary technologies, and the detailed ¹REALM model that's transforming therapy access.
Coming Soon
⚙️
Platform Services
Comprehensive guides to our manufacturing, analytical, logistics, and clinical services—with case studies and capabilities.
Coming Soon
👥
Leadership Team
Meet the experts driving our mission—detailed bios, backgrounds, and the diverse expertise powering global therapy access.
Coming Soon
🤝
Strategic Partners
Discover our network of partners, collaborators, and institutions working together to eliminate therapy access barriers.
Coming Soon
Stay Connected
Be the first to know when new content goes live and get exclusive insights into our platform development.