527 lines
18 KiB
HTML
527 lines
18 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Security Hub Initiatives — Building Cyber Resilience Together | CypSEC</title>
|
|
<meta name="description" content="The CypSec Security Hub brings together organizations, researchers, and experts to advance cyber-sovereignty and strengthen digital resilience through dedicated initiatives.">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Icons -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
|
|
<style>
|
|
:root {
|
|
--primary-blue: #0066ff;
|
|
--deep-blue: #0033cc;
|
|
--accent-purple: #6366f1;
|
|
--dark-bg: #0a0a0a;
|
|
--dark-card: #1a1a1a;
|
|
--text-primary: #ffffff;
|
|
--text-secondary: #a1a1aa;
|
|
--text-muted: #71717a;
|
|
--border-color: #27272a;
|
|
--gradient-primary: linear-gradient(135deg, #0066ff 0%, #6366f1 100%);
|
|
--gradient-secondary: linear-gradient(135deg, #0033cc 0%, #0066ff 100%);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: var(--dark-bg);
|
|
color: var(--text-primary);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Navigation */
|
|
nav {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
background: rgba(10, 10, 10, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
border-bottom: 1px solid var(--border-color);
|
|
z-index: 1000;
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.nav-container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 2rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
background: var(--gradient-primary);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.nav-links {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-links a {
|
|
color: var(--text-secondary);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav-links a:hover {
|
|
color: var(--primary-blue);
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
margin-top: 80px;
|
|
padding: 6rem 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background:
|
|
radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
|
|
radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hero-content {
|
|
position: relative;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 700;
|
|
margin-bottom: 1.5rem;
|
|
background: var(--gradient-primary);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero .subtitle {
|
|
font-size: 1.25rem;
|
|
color: var(--text-secondary);
|
|
margin-bottom: 2rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Article Content */
|
|
.article-container {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
}
|
|
|
|
.article-header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.article-meta {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
color: var(--text-muted);
|
|
font-size: 0.9rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.article-content {
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.article-content h2 {
|
|
font-size: 2rem;
|
|
color: var(--text-primary);
|
|
margin: 3rem 0 1.5rem 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.article-content h3 {
|
|
font-size: 1.5rem;
|
|
color: var(--primary-blue);
|
|
margin: 2rem 0 1rem 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.article-content p {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* Initiative Cards */
|
|
.initiatives-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 2rem;
|
|
margin: 3rem 0;
|
|
}
|
|
|
|
.initiative-card {
|
|
background: var(--dark-card);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 12px;
|
|
padding: 2rem;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.initiative-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
background: var(--gradient-primary);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.initiative-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary-blue);
|
|
box-shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
|
|
}
|
|
|
|
.initiative-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
|
|
.initiative-number {
|
|
display: inline-block;
|
|
background: var(--gradient-primary);
|
|
color: white;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
line-height: 32px;
|
|
font-weight: 600;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.initiative-title {
|
|
font-size: 1.25rem;
|
|
color: var(--text-primary);
|
|
margin-bottom: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.initiative-description {
|
|
color: var(--text-muted);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Goals Section */
|
|
.goals-section {
|
|
background: var(--dark-card);
|
|
border-radius: 16px;
|
|
padding: 3rem;
|
|
margin: 4rem 0;
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
|
|
.goals-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.goal-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.goal-icon {
|
|
color: var(--primary-blue);
|
|
font-size: 1.5rem;
|
|
margin-top: 0.25rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* CTA Section */
|
|
.cta-section {
|
|
background: var(--gradient-secondary);
|
|
border-radius: 16px;
|
|
padding: 4rem;
|
|
text-align: center;
|
|
margin: 4rem 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cta-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
left: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
|
|
animation: pulse 4s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { transform: scale(1); opacity: 0.5; }
|
|
50% { transform: scale(1.1); opacity: 0.3; }
|
|
}
|
|
|
|
.cta-content {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.cta-title {
|
|
font-size: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.cta-description {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 2rem;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
background: white;
|
|
color: var(--deep-blue);
|
|
padding: 1rem 2rem;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.nav-links {
|
|
display: none;
|
|
}
|
|
|
|
.hero {
|
|
padding: 4rem 1rem;
|
|
}
|
|
|
|
.article-container {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.initiatives-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.goals-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.cta-section {
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Navigation -->
|
|
<nav>
|
|
<div class="nav-container">
|
|
<div class="logo">CypSEC</div>
|
|
<ul class="nav-links">
|
|
<li><a href="#initiatives">Initiatives</a></li>
|
|
<li><a href="#goals">Goals</a></li>
|
|
<li><a href="#join">Join Us</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero">
|
|
<div class="hero-content">
|
|
<h1>Security Hub Initiatives</h1>
|
|
<p class="subtitle">Building Cyber Resilience Together</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Article Content -->
|
|
<article class="article-container">
|
|
<header class="article-header">
|
|
<div class="article-meta">
|
|
<span><i class="fas fa-calendar"></i> December 2025</span>
|
|
<span><i class="fas fa-clock"></i> 5 min read</span>
|
|
<span><i class="fas fa-shield-alt"></i> Security Hub</span>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="article-content">
|
|
<p>The CypSec Security Hub brings together organizations, researchers, communities, and experts to advance cyber-sovereignty and strengthen digital resilience. Through dedicated initiatives, the Hub creates a space for knowledge-sharing, capacity building, open collaboration, and the development of secure and sovereign technologies.</p>
|
|
|
|
<p>These initiatives serve as catalysts for innovation and as anchor points for long-term security empowerment across sectors.</p>
|
|
|
|
<h2 id="initiatives">Current Initiatives</h2>
|
|
|
|
<div class="initiatives-grid">
|
|
<div class="initiative-card">
|
|
<div class="initiative-number">1</div>
|
|
<h3 class="initiative-title">SME Security Acceleration Program</h3>
|
|
<p class="initiative-description">Supporting small and medium organizations in adopting secure communication, governance, and operational protection with minimal complexity and sustainable cost.</p>
|
|
</div>
|
|
|
|
<div class="initiative-card">
|
|
<div class="initiative-number">2</div>
|
|
<h3 class="initiative-title">Civil Society & Activist Protection Initiative</h3>
|
|
<p class="initiative-description">Providing secure communication platforms, privacy-preserving infrastructure, and threat awareness programs for journalists, NGOs, and advocacy groups.</p>
|
|
</div>
|
|
|
|
<div class="initiative-card">
|
|
<div class="initiative-number">3</div>
|
|
<h3 class="initiative-title">Critical Infrastructure Readiness Track</h3>
|
|
<p class="initiative-description">Assisting operators in improving compliance, incident response capability, and resilience to targeted threats.</p>
|
|
</div>
|
|
|
|
<div class="initiative-card">
|
|
<div class="initiative-number">4</div>
|
|
<h3 class="initiative-title">Research & Innovation Collaboration</h3>
|
|
<p class="initiative-description">Partnerships with universities, R&D hubs, and innovators to develop new methodologies, prototypes, and sovereign technologies.</p>
|
|
</div>
|
|
|
|
<div class="initiative-card">
|
|
<div class="initiative-number">5</div>
|
|
<h3 class="initiative-title">Open Source & Community Contributions</h3>
|
|
<p class="initiative-description">Maintaining tooling, documentation, and threat-intelligence artifacts available to the wider community as part of the cooperative security model.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 id="goals">Goals of the Security Hub</h2>
|
|
|
|
<div class="goals-section">
|
|
<div class="goals-grid">
|
|
<div class="goal-item">
|
|
<i class="fas fa-flag goal-icon"></i>
|
|
<div>
|
|
<h4>Strengthen cyber-sovereignty</h4>
|
|
<p>Across regions and sectors</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="goal-item">
|
|
<i class="fas fa-users goal-icon"></i>
|
|
<div>
|
|
<h4>Build community-driven resilience</h4>
|
|
<p>Through collaborative efforts</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="goal-item">
|
|
<i class="fas fa-unlock goal-icon"></i>
|
|
<div>
|
|
<h4>Democratize access</h4>
|
|
<p>To high-grade security</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="goal-item">
|
|
<i class="fas fa-shield-alt goal-icon"></i>
|
|
<div>
|
|
<h4>Enable sustainable protection</h4>
|
|
<p>For the long term</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="goal-item">
|
|
<i class="fas fa-lightbulb goal-icon"></i>
|
|
<div>
|
|
<h4>Foster innovation</h4>
|
|
<p>Through open collaboration</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="goal-item">
|
|
<i class="fas fa-network-wired goal-icon"></i>
|
|
<div>
|
|
<h4>Connect stakeholders</h4>
|
|
<p>SMEs, activists, and operators</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 id="join">Who Can Join</h2>
|
|
<p>The Security Hub welcomes participation from diverse stakeholders across the cybersecurity ecosystem:</p>
|
|
|
|
<ul style="margin-left: 2rem; margin-bottom: 2rem;">
|
|
<li>SMEs and startups seeking to enhance their security posture</li>
|
|
<li>NGOs, journalists, and human-rights groups requiring protection</li>
|
|
<li>Public institutions and municipalities implementing security policies</li>
|
|
<li>Critical infrastructure providers strengthening defenses</li>
|
|
<li>Universities, researchers, and academic labs advancing knowledge</li>
|
|
<li>Innovation and impact accelerators supporting growth</li>
|
|
</ul>
|
|
|
|
<h2>Participation Benefits</h2>
|
|
<p>Members of the Security Hub gain access to comprehensive resources and support:</p>
|
|
|
|
<ul style="margin-left: 2rem; margin-bottom: 2rem;">
|
|
<li>Access to secure communication infrastructure</li>
|
|
<li>Mentorship and guidance from cybersecurity experts</li>
|
|
<li>Threat intelligence and situational awareness updates</li>
|
|
<li>Workshops, training sessions, and community events</li>
|
|
<li>Support for funding and innovation projects</li>
|
|
<li>Collaborative prototypes and joint initiatives</li>
|
|
</ul>
|
|
|
|
<h2>Vision</h2>
|
|
<p>A distributed network of secure, sovereign, and resilient actors — working together to create long-term digital autonomy for society, business, and critical infrastructure.</p>
|
|
</div>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="cta-section" id="contact">
|
|
<div class="cta-content">
|
|
<h2 class="cta-title">Ready to Build Cyber Resilience?</h2>
|
|
<p class="cta-description">Join the CypSEC Security Hub and become part of a collaborative network advancing cyber-sovereignty and digital resilience.</p>
|
|
<a href="mailto:contact@cypsec.de?subject=Security%20Hub%20Inquiry" class="cta-button">
|
|
<i class="fas fa-envelope"></i> Get Involved
|
|
</a>
|
|
</div>
|
|
</section>
|
|
</article>
|
|
</body>
|
|
</html> |