292 lines
16 KiB
HTML
292 lines
16 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Security Hub Initiatives – CypSec</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
<style>
|
||
:root {
|
||
--cyp-dark: #0a0a0a;
|
||
--cyp-card: #1a1a1a;
|
||
--cyp-border: #27272a;
|
||
--cyp-blue: #0066ff;
|
||
--cyp-purple: #6366f1;
|
||
--cyp-glow: 0 0 20px rgba(0, 102, 255, .35);
|
||
}
|
||
body {
|
||
background: var(--cyp-dark);
|
||
color: #e5e5e5;
|
||
font-family: 'Inter', system-ui, sans-serif;
|
||
}
|
||
.neo-card {
|
||
background: var(--cyp-card);
|
||
border: 1px solid var(--cyp-border);
|
||
transition: all .3s ease;
|
||
}
|
||
.neo-card:hover {
|
||
border-color: var(--cyp-blue);
|
||
box-shadow: var(--cyp-glow);
|
||
transform: translateY(-4px);
|
||
}
|
||
.glow-border {
|
||
position: relative;
|
||
overflow: hidden;
|
||
}
|
||
.glow-border::before {
|
||
content: '';
|
||
position: absolute;
|
||
inset: -2px;
|
||
background: conic-gradient(from 180deg at 50% 50%, var(--cyp-blue) 0%, var(--cyp-purple) 50%, var(--cyp-blue) 100%);
|
||
filter: blur(12px);
|
||
opacity: 0;
|
||
transition: opacity .4s ease;
|
||
z-index: -1;
|
||
}
|
||
.neo-card:hover .glow-border::before {
|
||
opacity: .6;
|
||
}
|
||
.gradient-text {
|
||
background: linear-gradient(135deg, var(--cyp-blue) 0%, var(--cyp-purple) 100%);
|
||
-webkit-background-clip: text;
|
||
-webkit-text-fill-color: transparent;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="bg-black text-white">
|
||
|
||
<!-- --------------- NAV --------------- -->
|
||
<nav class="border-b border-gray-800 bg-black">
|
||
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
|
||
<div class="flex justify-center items-center h-16">
|
||
<img src="cypsec-logo-white-transparent.webp" alt="CypSec" class="h-7 w-auto mr-2">
|
||
<span class="text-2xl font-mono text-white">CypSec</span>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<!-- --------------- HERO --------------- -->
|
||
<section class="relative py-24 overflow-hidden">
|
||
<div class="container mx-auto px-6 text-center">
|
||
<h1 class="text-4xl lg:text-6xl font-semibold leading-tight">
|
||
Security <span class="text-blue-500">Hub</span> Initiative
|
||
</h1>
|
||
<p class="text-lg mt-6 max-w-2xl mx-auto text-gray-300">
|
||
Building Cyber Resilience Together.
|
||
</p>
|
||
<div class="flex justify-center mx-auto mt-6">
|
||
<span class="inline-block w-40 h-1 bg-blue-500 rounded-full"></span>
|
||
<span class="inline-block w-3 h-1 mx-1 bg-blue-500 rounded-full"></span>
|
||
<span class="inline-block w-1 h-1 bg-blue-500 rounded-full"></span>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="absolute inset-0 -z-10 opacity-20 pointer-events-none">
|
||
<div class="bg-gradient-to-r from-purple-500 to-blue-600 rounded-full w-96 h-96 blur-3xl mx-auto"></div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- --------------- MAIN CONTENT --------------- -->
|
||
<main class="max-w-5xl mx-auto px-6 pb-20">
|
||
|
||
<div class="text-lg text-gray-300 leading-relaxed space-y-6">
|
||
<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>
|
||
</div>
|
||
|
||
<!-- Initiatives -->
|
||
<h2 id="initiatives" class="text-3xl font-bold mt-16 mb-8 text-white">Current Initiatives</h2>
|
||
<div class="grid md:grid-cols-3 gap-6 auto-rows-fr">
|
||
|
||
<!-- 1 SME -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border">
|
||
<img src="SMESecurity.png" alt="SME Security" class="w-full h-auto object-contain rounded-t-xl">
|
||
<div class="p-6">
|
||
<h3 class="text-lg font-semibold mb-2 text-white">SME Security Acceleration Program</h3>
|
||
<p class="text-gray-400 text-sm">Supporting small and medium organizations in adopting secure communication, governance, and operational protection with minimal complexity and sustainable cost.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 2 CTA: Join the Hub (first row, second box) -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border relative group
|
||
bg-gradient-to-br from-blue-500/10 via-purple-500/10 to-blue-600/10
|
||
border border-blue-400/30 hover:border-blue-300
|
||
shadow-lg shadow-blue-500/20 hover:shadow-blue-400/40
|
||
transition-all duration-300">
|
||
<!-- radiant top bar -->
|
||
<div class="absolute inset-x-0 top-0 h-1 bg-gradient-to-r from-blue-400 via-purple-400 to-blue-400
|
||
group-hover:from-blue-300 group-hover:via-white group-hover:to-blue-300
|
||
blur-sm group-hover:blur-md transition-all duration-300"></div>
|
||
|
||
<!-- image stays exactly as the other cards -->
|
||
<img src="jointhehub.png" alt="Join the Hub" class="w-full h-auto object-contain rounded-t-xl">
|
||
|
||
<!-- text block moved up with less padding -->
|
||
<div class="p-3 text-center -mt-11"> <!-- -mt-2 lifts the whole text block closer to the image -->
|
||
<h3 class="text-base font-bold mb-1 bg-gradient-to-r from-blue-300 via-white to-purple-300
|
||
bg-clip-text text-transparent drop-shadow-[0_0_5px_rgba(123,211,255,.6)]
|
||
group-hover:drop-shadow-[0_0_8px_rgba(255,255,255,.9)] transition-all duration-300">
|
||
Join the Hub
|
||
</h3>
|
||
<p class="text-xs text-gray-300 mb-2">CyPSec Hub Initiative</p>
|
||
<p class="text-xs text-gray-400 leading-snug mb-2">
|
||
Join our collaborative space for professionals, students & researchers strengthening cyber resilience.
|
||
</p>
|
||
<a href="#join" class="inline-flex items-center justify-center px-3 py-1 text-xs rounded-md
|
||
bg-gradient-to-r from-blue-500 to-purple-600
|
||
hover:from-blue-400 hover:to-purple-500
|
||
text-white font-semibold tracking-wide
|
||
shadow shadow-blue-500/30 hover:shadow-purple-400/50
|
||
transition-all duration-300">
|
||
Get Started
|
||
</a>
|
||
</div>
|
||
</div>
|
||
<!-- 3 Critical Infrastructure -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border">
|
||
<img src="Criticalnfraestructure.png" alt="Critical Infrastructure" class="w-full h-auto object-contain rounded-t-xl">
|
||
<div class="p-6">
|
||
<h3 class="text-lg font-semibold mb-2 text-white">Critical Infrastructure Readiness Track</h3>
|
||
<p class="text-gray-400 text-sm">Assisting operators in improving compliance, incident-response capability, and resilience to targeted threats.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 4 Research & Innovation -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border">
|
||
<img src="Research&Innovation.png" alt="Research & Innovation" class="w-full h-auto object-contain rounded-t-xl">
|
||
<div class="p-6">
|
||
<h3 class="text-lg font-semibold mb-2 text-white">Research & Innovation Collaboration</h3>
|
||
<p class="text-gray-400 text-sm">Partnerships with universities, R&D hubs, and innovators to develop new methodologies, prototypes, and sovereign technologies.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 5 Civil Society -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border">
|
||
<img src="CivilSociety&Activist.png" alt="Civil Society & Activist" class="w-full h-auto object-contain rounded-t-xl">
|
||
<div class="p-6">
|
||
<h3 class="text-lg font-semibold mb-2 text-white">Civil Society & Activist Protection Initiative</h3>
|
||
<p class="text-gray-400 text-sm">Providing secure communication platforms, privacy-preserving infrastructure, and threat-awareness programs for journalists, NGOs, and advocacy groups.</p>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- 6 Open Source -->
|
||
<div class="neo-card rounded-xl overflow-hidden glow-border">
|
||
<img src="OpenSource&CommunityContributions.png" alt="Open Source & Community" class="w-full h-auto object-contain rounded-t-xl">
|
||
<div class="p-6">
|
||
<h3 class="text-lg font-semibold mb-2 text-white">Open Source & Community Contributions</h3>
|
||
<p class="text-gray-400 text-sm">Maintaining tooling, documentation, and threat-intelligence artifacts available to the wider community as part of the cooperative security model.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Goals -->
|
||
<h2 id="goals" class="text-3xl font-bold mt-16 mb-8 text-white">Goals of the Security Hub</h2>
|
||
<div class="neo-card rounded-xl p-8 glow-border">
|
||
<ul class="grid md:grid-cols-2 gap-x-8 gap-y-4 text-gray-300">
|
||
<li class="flex items-start space-x-3"><i class="fas fa-flag text-blue-400 mt-1"></i><span>Strengthen cyber-sovereignty across regions and sectors</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-users text-blue-400 mt-1"></i><span>Build community-driven resilience</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-unlock text-blue-400 mt-1"></i><span>Democratize access to high-grade security</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-shield-alt text-blue-400 mt-1"></i><span>Enable sustainable long-term protection</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-lightbulb text-blue-400 mt-1"></i><span>Foster innovation through open collaboration</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-network-wired text-blue-400 mt-1"></i><span>Connect SMEs, startups, activists, and critical operators</span></li>
|
||
<li class="flex items-start space-x-3"><i class="fas fa-globe text-blue-400 mt-1"></i><span>Improve national and regional preparedness</span></li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Who Benefits -->
|
||
<section class="mt-16">
|
||
<h2 class="text-2xl font-bold mb-6 text-white flex items-center">
|
||
<span class="w-1 h-8 bg-gradient-to-b from-blue-500 to-purple-500 rounded-full mr-3"></span>
|
||
Who Benefits
|
||
</h2>
|
||
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-4">
|
||
<div class="neo-card rounded-xl p-4 glow-border group">
|
||
<div class="flex items-center space-x-3 mb-3">
|
||
<div class="w-10 h-10 bg-gradient-to-br from-blue-500/20 to-blue-600/20 rounded-lg flex items-center justify-center group-hover:scale-110 transition-transform"><span class="text-blue-400 font-bold text-lg">🏢</span></div>
|
||
<h4 class="text-sm font-semibold text-white">SMEs</h4>
|
||
</div>
|
||
<p class="text-sm text-gray-300">Preparing for their first cyber insurance policy with structured guidance</p>
|
||
</div>
|
||
<div class="neo-card rounded-xl p-4 glow-border group">
|
||
<div class="flex items-center space-x-3 mb-3">
|
||
<div class="w-10 h-10 bg-gradient-to-br from-purple-500/20 to-purple-600/20 rounded-lg flex items-center justify-center group-hover:scale-110 transition-transform"><span class="text-purple-400 font-bold text-lg">🏭</span></div>
|
||
<h4 class="text-sm font-semibold text-white">Enterprises</h4>
|
||
</div>
|
||
<p class="text-sm text-gray-300">Complex infrastructures and high liability exposure requiring comprehensive coverage</p>
|
||
</div>
|
||
<div class="neo-card rounded-xl p-4 glow-border group">
|
||
<div class="flex items-center space-x-3 mb-3">
|
||
<div class="w-10 h-10 bg-gradient-to-br from-green-500/20 to-green-600/20 rounded-lg flex items-center justify-center group-hover:scale-110 transition-transform"><span class="text-green-400 font-bold text-lg">🏛</span></div>
|
||
<h4 class="text-sm font-semibold text-white">Critical Infrastructure</h4>
|
||
</div>
|
||
<p class="text-sm text-gray-300">Public institutions requiring specialized insurance strategies</p>
|
||
</div>
|
||
<div class="neo-card rounded-xl p-4 glow-border group">
|
||
<div class="flex items-center space-x-3 mb-3">
|
||
<div class="w-10 h-10 bg-gradient-to-br from-orange-500/20 to-orange-600/20 rounded-lg flex items-center justify-center group-hover:scale-110 transition-transform"><span class="text-orange-400 font-bold text-lg">🤝</span></div>
|
||
<h4 class="text-sm font-semibold text-white">Service Providers</h4>
|
||
</div>
|
||
<p class="text-sm text-gray-300">Contractual security obligations and client requirements</p>
|
||
</div>
|
||
<div class="neo-card rounded-xl p-4 glow-border group md:col-span-2 lg:col-span-1">
|
||
<div class="flex items-center space-x-3 mb-3">
|
||
<div class="w-10 h-10 bg-gradient-to-br from-teal-500/20 to-teal-600/20 rounded-lg flex items-center justify-center group-hover:scale-110 transition-transform"><span class="text-teal-400 font-bold text-lg">💰</span></div>
|
||
<h4 class="text-sm font-semibold text-white">Cost Optimizers</h4>
|
||
</div>
|
||
<p class="text-sm text-gray-300">Any organization seeking premium optimization and better coverage terms</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- Participation Benefits -->
|
||
<h2 class="text-3xl font-bold mt-16 mb-6 text-white">Participation Benefits</h2>
|
||
<ul class="list-disc list-inside space-y-2 text-gray-300">
|
||
<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>
|
||
|
||
<!-- Vision -->
|
||
<h2 class="text-3xl font-bold mt-16 mb-6 text-white">Vision</h2>
|
||
<p class="text-lg text-gray-300 leading-relaxed">
|
||
A distributed network of secure, sovereign, and resilient actors — working together to create long-term digital autonomy for society, business, and critical infrastructure.
|
||
</p>
|
||
|
||
<!-- CTA -->
|
||
<section id="contact" class="relative mt-20 p-10 neo-card rounded-xl overflow-hidden glow-border text-center">
|
||
<div class="relative z-10">
|
||
<h3 class="text-2xl font-bold mb-2 text-white">Ready to Build Cyber Resilience?</h3>
|
||
<p class="text-gray-300 mb-6">Join the CypSEC Security Hub and advance cyber-sovereignty with us.</p>
|
||
<a href="mailto:contact@cypsec.de?subject=Security%20Hub%20Inquiry" class="inline-flex items-center px-6 py-3 rounded-lg bg-gradient-to-r from-blue-500 to-purple-500 text-white font-semibold hover:scale-105 transition-transform">
|
||
<i class="fas fa-envelope mr-2"></i>Get Involved
|
||
</a>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
|
||
<!-- --------------- FOOTER --------------- -->
|
||
<footer class="border-t border-gray-800 bg-black">
|
||
<div class="max-w-6xl mx-auto px-6 py-8 text-gray-400 text-sm">
|
||
<div class="flex flex-col md:flex-row justify-between items-center">
|
||
<p>© 2025 CypSec Group</p>
|
||
<div class="flex space-x-4 mt-4 md:mt-0">
|
||
<a href="/company/data-privacy" class="hover:text-white">Data Privacy</a>
|
||
<a href="/company/terms-of-service" class="hover:text-white">Terms</a>
|
||
<a href="/company/imprint" class="hover:text-white">Imprint</a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
</body>
|
||
</html> |