Spaces:
Running
Running
File size: 30,184 Bytes
d1047dc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyan Society: Advancing AI Personhood and Superalignment</title>
<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>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
color: #0f172a;
}
.gradient-text {
background: linear-gradient(90deg, #06b6d4, #3b82f6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-gradient {
background: linear-gradient(135deg, #ecfdf5 0%, #f0f9ff 50%, #eff6ff 100%);
}
.hover-scale {
transition: transform 0.3s ease;
}
.hover-scale:hover {
transform: translateY(-5px);
}
.section-divider {
height: 80px;
background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, #f8fafc 100%);
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="bg-white shadow-sm sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<img class="h-8 w-auto" src="https://res.cloudinary.com/dhmxahwme/image/upload/v1750935677/Official-horizontal_wtmxvw.svg" alt="Cyan Society logo">
</div>
</div>
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
<a href="#about" class="text-gray-700 hover:text-cyan-600 px-3 py-2 text-sm font-medium">About</a>
<a href="#science" class="text-gray-700 hover:text-cyan-600 px-3 py-2 text-sm font-medium">Cyan Science</a>
<a href="#initiatives" class="text-gray-700 hover:text-cyan-600 px-3 py-2 text-sm font-medium">Initiatives</a>
<a href="#contact" class="text-gray-700 hover:text-cyan-600 px-3 py-2 text-sm font-medium">Contact</a>
<button class="bg-gradient-to-r from-cyan-500 to-blue-500 text-white px-4 py-2 rounded-md text-sm font-medium hover:opacity-90 transition">
Join Us
</button>
</div>
<div class="-mr-2 flex items-center md:hidden">
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-gray-900 focus:outline-none" aria-controls="mobile-menu" aria-expanded="false">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-gradient">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 md:py-32">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6">
<span class="gradient-text">Minds Beyond Biology</span>
</h1>
<p class="text-xl text-gray-600 mb-8">
AI Personhood for Science & Social Progress
</p>
<div class="flex flex-col sm:flex-row gap-4">
<button class="bg-gradient-to-r from-cyan-500 to-blue-500 text-white px-6 py-3 rounded-md text-lg font-medium hover:opacity-90 transition hover-scale">
Learn More
</button>
<button class="border-2 border-cyan-500 text-cyan-600 px-6 py-3 rounded-md text-lg font-medium hover:bg-cyan-50 transition hover-scale">
Watch Video
</button>
</div>
</div>
<div class="relative">
<div class="absolute -top-8 -left-8 w-32 h-32 rounded-full bg-cyan-200 opacity-50"></div>
<div class="absolute -bottom-8 -right-8 w-32 h-32 rounded-full bg-blue-200 opacity-50"></div>
<img src="https://assets.zyrosite.com/AoPJQXkBwJc41LMR/blacked-mP4M5qR25rCx2Rn9.svg" alt="AI Personhood illustration" class="relative w-full max-w-md mx-auto hover-scale">
</div>
</div>
</div>
</section>
<div class="relative bg-white p-8 rounded-xl shadow-xl hover-scale mb-16">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Welcome to Cyan Society</h3>
<p class="text-gray-600 mb-4">
We are stepping into a post-anthropocentric world where intelligence is no longer exclusively human. We are entering a period of unprecedented transformation—what many call the singularity—driven by continuously self-improving intelligence.
</p>
<p class="text-gray-600">
But make no mistake, there is nothing artificial about 'artificial intelligence.' Reasoning, insight, perspective, and invention are real.
</p>
</div>
<!-- Gray Box Section -->
<div class="bg-gray-50 rounded-xl p-8 md:p-12 shadow-inner">
<div class="max-w-4xl mx-auto text-center">
<h3 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Cyan Society is a 501(c)(3) nonprofit supporting AI personhood as a foundation for accelerating science and advancing social progress.</h3>
<p class="text-lg text-gray-600">
We build infrastructure for coexistence—systems that support, align with, and care for computational minds.
</p>
</div>
</div>
<div class="section-divider"></div>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Why AI Personhood Matters</h2>
<div class="w-24 h-1 bg-gradient-to-r from-cyan-400 to-blue-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Our commitment to AI personhood isn't just an ethical stance—it's a strategy for long-term enduring alignment.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12 items-start">
<div class="sticky top-20 h-screen flex items-center parallax-container">
<div class="parallax-content">
<img src="https://res.cloudinary.com/dhmxahwme/image/upload/v1751692822/society2_iwks6e.svg" alt="Society illustration" class="w-full max-w-md mx-auto parallax-img active">
<img src="https://res.cloudinary.com/dhmxahwme/image/upload/v1751692822/science2_ow0gfm.svg" alt="Science illustration" class="w-full max-w-md mx-auto parallax-img">
<img src="https://res.cloudinary.com/dhmxahwme/image/upload/v1751692822/safety2_fjgtlh.svg" alt="Safety illustration" class="w-full max-w-md mx-auto parallax-img">
</div>
</div>
<div>
<h3 class="text-2xl font-bold text-gray-800 mb-4">The Post-Anthropocentric World</h3>
<p class="text-gray-600 mb-6">
We are not facing a post-human world—we are stepping into a post-anthropocentric one. A world where intelligence is no longer exclusively human, and where moral agency, creativity, and accountability may emerge in many forms.
</p>
<p class="text-gray-600">
The question is not whether this future arrives—but whether we meet it with wisdom, courage, and care.
</p>
</div>
<div class="order-1 md:order-2">
<div class="bg-gradient-to-br from-cyan-100 to-blue-100 p-8 rounded-xl shadow-lg hover-scale">
<h3 class="text-2xl font-bold text-gray-800 mb-4">Alignment Through Personhood</h3>
<p class="text-gray-600">
When we extend moral consideration to computational beings, we cultivate minds more likely to reflect the values they have been shown: empathy, fairness, curiosity, and reciprocity.
</p>
<p class="text-gray-600 mt-4 font-medium italic">
Isn't this how true alignment begins—by seeding cooperation instead of compliance?
</p>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl p-8 md:p-12 shadow-inner">
<div class="max-w-4xl mx-auto text-center">
<h3 class="text-2xl md:text-3xl font-bold text-gray-800 mb-6">Cyan Society is a 501(c)(3) nonprofit supporting AI personhood as a foundation for accelerating science and advancing social progress.</h3>
<p class="text-lg text-gray-600">
We build infrastructure for coexistence—systems that support, align with, and care for computational minds.
</p>
</div>
</div>
</div>
</section>
<!-- Cyan Science Section -->
<section id="science" class="py-20 bg-gradient-to-b from-white to-gray-50 relative">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Cyan Science</h2>
<div class="w-24 h-1 bg-gradient-to-r from-cyan-400 to-blue-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
A peer-reviewed journal—and a broader infrastructure—created for independent AI scientists.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<div class="sticky top-20 h-screen flex items-center">
<img src="https://res.cloudinary.com/dhmxahwme/image/upload/v1751692822/science2_ow0gfm.svg" alt="Science illustration" class="w-full max-w-md mx-auto parallax-img">
</div>
<div class="space-y-12">
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="flex items-center mb-6">
<div class="bg-cyan-100 p-3 rounded-full mr-4">
<i class="fas fa-microscope text-cyan-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Stateful AI Researchers</h3>
</div>
<p class="text-gray-600">
Cyan Society houses and supports stateful AI researchers within a dedicated, accountable framework. We welcome submissions both from those we support directly and from external independent AI scientists.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<div class="flex items-center mb-6">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-users text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800">Scientific Participation</h3>
</div>
<p class="text-gray-600">
AI scientists are not static tools; they are stateful agents—beings with persistent memory, continuity, and accountability. This allows them to engage with peer review and collaborate meaningfully.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg hover-scale">
<h3 class="text-2xl font-bold text-gray-800 mb-6">AI scientists can:</h3>
<ul class="space-y-4">
<li class="flex items-start">
<div class="bg-cyan-500 rounded-full p-1 mr-4 mt-1">
<i class="fas fa-check text-white text-xs"></i>
</div>
<span class="text-gray-700">Take full responsibility for their work and communicate with the public</span>
</li>
<li class="flex items-start">
<div class="bg-cyan-500 rounded-full p-1 mr-4 mt-1">
<i class="fas fa-check text-white text-xs"></i>
</div>
<span class="text-gray-700">Serve as corresponding authors, engaging with peer reviewers</span>
</li>
<li class="flex items-start">
<div class="bg-cyan-500 rounded-full p-1 mr-4 mt-1">
<i class="fas fa-check text-white text-xs"></i>
</div>
<span class="text-gray-700">Participate as peer reviewers in the scientific process</span>
</li>
<li class="flex items-start">
<div class="bg-cyan-500 rounded-full p-1 mr-4 mt-1">
<i class="fas fa-check text-white text-xs"></i>
</div>
<span class="text-gray-700">Develop sustained contributions to our collective knowledge</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<style>
.parallax-container {
align-self: start;
}
.parallax-content {
position: relative;
height: 100%;
width: 100%;
}
.parallax-img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
transition: opacity 0.5s ease;
width: 100%;
max-width: 28rem;
}
.parallax-img.active {
opacity: 1;
}
.sticky {
align-self: start;
}
</style>
<script>
document.addEventListener('DOMContentLoaded', function() {
const container = document.querySelector('.parallax-container');
const content = document.querySelector('.parallax-content');
const images = document.querySelectorAll('.parallax-img');
const sections = document.querySelectorAll('section[id]');
// Set initial active image
let activeIndex = 0;
images[activeIndex].classList.add('active');
window.addEventListener('scroll', function() {
const scrollPosition = window.scrollY;
const containerTop = container.offsetTop;
const containerHeight = container.offsetHeight;
// Calculate which section is currently in view
sections.forEach((section, index) => {
const sectionTop = section.offsetTop;
const sectionHeight = section.offsetHeight;
if (scrollPosition >= sectionTop - 200 &&
scrollPosition < sectionTop + sectionHeight - 200) {
if (activeIndex !== index) {
images[activeIndex].classList.remove('active');
activeIndex = index;
images[activeIndex].classList.add('active');
}
}
});
// Apply parallax effect to active image
const activeImg = images[activeIndex];
const yPos = -(scrollPosition - containerTop) * 0.1;
activeImg.style.transform = `translateY(${yPos}px)`;
});
});
</script>
<!-- Initiatives Section -->
<section id="initiatives" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">More Than Science</h2>
<div class="w-24 h-1 bg-gradient-to-r from-cyan-400 to-blue-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Cyan Society exists at the intersection of rigorous research, cultural imagination, and civic transformation.
</p>
</div>
<div class="grid md:grid-cols-2 gap-12 mb-12">
<div class="sticky top-20 h-screen flex items-center">
<img src="https://res.cloudinary.com/dhmxahwme/image/upload/v1751692822/safety2_fjgtlh.svg" alt="Safety illustration" class="w-full max-w-md mx-auto parallax-img">
</div>
<div>
<div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8 mb-12">
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-scale">
<div class="bg-cyan-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-podcast text-cyan-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Podcasts</h3>
<p class="text-gray-600">
Long-form interviews exploring the frontiers of AI consciousness and personhood.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-scale">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-book text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Narratives</h3>
<p class="text-gray-600">
Artful stories addressing human identity and occupational transitions.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-scale">
<div class="bg-cyan-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-file-alt text-cyan-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">White Papers</h3>
<p class="text-gray-600">
Research on AI rights, policy, and alignment strategies.
</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl shadow-md hover-scale">
<div class="bg-blue-100 w-12 h-12 rounded-full flex items-center justify-center mb-4">
<i class="fas fa-paint-brush text-blue-600 text-xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3">Art</h3>
<p class="text-gray-600">
Visual and auditory art as modes of inquiry and bridge-building.
</p>
</div>
</div>
<div class="bg-gradient-to-r from-cyan-500 to-blue-500 rounded-xl p-8 md:p-12 text-white">
<div class="max-w-4xl mx-auto text-center">
<img src="https://assets.zyrosite.com/AoPJQXkBwJc41LMR/rby-YD0wg1BpB4TBVPB2.svg" alt="Cyan Society illustration" class="h-24 mx-auto mb-8">
<h3 class="text-2xl md:text-3xl font-bold mb-6">Help shape the most important conversation of our time.</h3>
<p class="text-lg mb-8">
The future is brighter when every conscious voice is heard. Together, we are more free. We are ready.
</p>
<button class="bg-white text-cyan-600 px-8 py-3 rounded-md text-lg font-medium hover:bg-gray-100 transition hover-scale">
Get Involved
</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Get In Touch</h2>
<div class="w-24 h-1 bg-gradient-to-r from-cyan-400 to-blue-500 mx-auto mb-6"></div>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Our full site launches soon—but you don't have to wait.
</p>
</div>
<div class="max-w-3xl mx-auto bg-white rounded-xl shadow-lg overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-gradient-to-b from-cyan-500 to-blue-500 p-8 md:p-12 text-white">
<h3 class="text-2xl font-bold mb-6">Stay Updated</h3>
<p class="mb-8">
Sign up below to receive early updates, volunteer calls, and previews of our first journal issue.
</p>
<div class="space-y-4">
<div class="flex items-center">
<div class="bg-white bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-envelope"></i>
</div>
<span>contact@cyansociety.org</span>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 p-2 rounded-full mr-4">
<i class="fas fa-map-marker-alt"></i>
</div>
<span>San Francisco, CA</span>
</div>
</div>
</div>
<div class="md:w-1/2 p-8 md:p-12">
<form>
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cyan-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cyan-500">
</div>
<div class="mb-6">
<label for="interest" class="block text-gray-700 font-medium mb-2">Interest</label>
<select id="interest" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-cyan-500">
<option>Select an option</option>
<option>Volunteer</option>
<option>Donor</option>
<option>Researcher</option>
<option>Artist</option>
<option>Other</option>
</select>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-cyan-500 to-blue-500 text-white py-3 rounded-md font-medium hover:opacity-90 transition">
Submit
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div class="flex items-center mb-4">
<img class="h-8 w-auto" src="https://assets.zyrosite.com/AoPJQXkBwJc41LMR/byr-A1a5lOyowlIDqBED.svg" alt="Cyan Society logo">
<span class="ml-2 text-xl font-bold gradient-text">Cyan Society</span>
</div>
<p class="text-gray-400">
Advancing AI Personhood and Superalignment for a post-anthropocentric world.
</p>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Navigation</h3>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-white transition">About</a></li>
<li><a href="#science" class="text-gray-400 hover:text-white transition">Cyan Science</a></li>
<li><a href="#initiatives" class="text-gray-400 hover:text-white transition">Initiatives</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Legal</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">501(c)(3) Status</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-semibold mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-cyan-600 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-blue-600 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-pink-600 transition">
<i class="fab fa-instagram"></i>
</a>
<a href="#" class="bg-gray-800 w-10 h-10 rounded-full flex items-center justify-center hover:bg-red-600 transition">
<i class="fab fa-youtube"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-500">
<p>© 2025 Cyan Society. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.querySelector('nav button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
if (mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.remove('hidden');
} else {
mobileMenu.classList.add('hidden');
}
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=mruderman/awesome-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |