651 lines
14 KiB
CSS
651 lines
14 KiB
CSS
/* ==========================================================================
|
|
SYSTEM AWAKENING - Core Styles
|
|
Cyberpunk theme with deep blues, purples, and neon accents
|
|
========================================================================== */
|
|
|
|
/* --------------------------------------------------------------------------
|
|
CSS Custom Properties (Variables)
|
|
-------------------------------------------------------------------------- */
|
|
:root {
|
|
/* Cyberpunk Color Palette */
|
|
--color-bg: #0a0a14;
|
|
--color-bg-dark: #05050a;
|
|
--color-bg-light: #151522;
|
|
|
|
--color-primary: #00f3ff;
|
|
--color-primary-dark: #0099a3;
|
|
--color-primary-light: #80f9ff;
|
|
|
|
--color-secondary: #9d00ff;
|
|
--color-secondary-dark: #6b00ad;
|
|
--color-secondary-light: #c566ff;
|
|
|
|
--color-accent: #ff00ff;
|
|
--color-accent-dark: #b300b3;
|
|
--color-accent-light: #ff66ff;
|
|
|
|
--color-text: #e0e0ff;
|
|
--color-text-dim: #8a8ab5;
|
|
--color-text-bright: #ffffff;
|
|
|
|
/* Terminal Colors */
|
|
--color-terminal-bg: rgba(0, 20, 10, 0.9);
|
|
--color-terminal-border: #00a854;
|
|
--color-terminal-text: #00ff00;
|
|
--color-terminal-text-dim: #00a854;
|
|
--color-terminal-prompt: #00ff88;
|
|
|
|
/* Glow Effects */
|
|
--glow-primary: 0 0 20px var(--color-primary);
|
|
--glow-secondary: 0 0 15px var(--color-secondary);
|
|
--glow-accent: 0 0 10px var(--color-accent);
|
|
--glow-text: 0 0 10px currentColor;
|
|
|
|
/* Typography */
|
|
--font-heading: 'Orbitron', sans-serif;
|
|
--font-body: 'Share Tech Mono', monospace;
|
|
--font-terminal: 'Courier New', monospace;
|
|
|
|
/* Layout */
|
|
--section-padding: 120px 5%;
|
|
--container-max-width: 1200px;
|
|
--card-width: 300px;
|
|
--border-radius: 8px;
|
|
|
|
/* Animation */
|
|
--animation-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
|
|
--animation-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
--animation-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
|
/* Shadows */
|
|
--shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.3);
|
|
--shadow-large: 0 8px 40px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Reset & Base Styles
|
|
-------------------------------------------------------------------------- */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
font-size: 16px;
|
|
}
|
|
|
|
body {
|
|
background: var(--color-bg);
|
|
color: var(--color-text);
|
|
font-family: var(--font-body);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* Particle Canvas */
|
|
.particle-canvas {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Main Container */
|
|
.container {
|
|
position: relative;
|
|
z-index: 10;
|
|
max-width: var(--container-max-width);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Sections
|
|
-------------------------------------------------------------------------- */
|
|
.section {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
padding: var(--section-padding);
|
|
position: relative;
|
|
}
|
|
|
|
.section-header {
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
|
|
.section-title {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(2.5rem, 5vw, 4rem);
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
margin-bottom: 1rem;
|
|
color: var(--color-text-bright);
|
|
text-shadow: var(--glow-primary);
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.2rem;
|
|
color: var(--color-text-dim);
|
|
font-weight: 300;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Hero Section
|
|
-------------------------------------------------------------------------- */
|
|
.hero-section {
|
|
text-align: center;
|
|
justify-content: center;
|
|
background: linear-gradient(
|
|
to bottom,
|
|
rgba(10, 10, 20, 0.9) 0%,
|
|
rgba(10, 10, 20, 0.7) 50%,
|
|
rgba(10, 10, 20, 0.9) 100%
|
|
);
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
}
|
|
|
|
.main-title {
|
|
font-family: var(--font-heading);
|
|
font-size: clamp(3rem, 15vw, 8rem);
|
|
font-weight: 900;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.2em;
|
|
margin-bottom: 3rem;
|
|
line-height: 1.1;
|
|
}
|
|
|
|
.title-line {
|
|
display: block;
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
animation: titleReveal 1s var(--animation-medium) forwards;
|
|
}
|
|
|
|
.title-line:nth-child(2) {
|
|
animation-delay: 0.5s;
|
|
}
|
|
|
|
.subtitle-container {
|
|
font-size: 1.5rem;
|
|
color: var(--color-primary);
|
|
margin-bottom: 4rem;
|
|
min-height: 2em;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.typewriter-text {
|
|
font-family: var(--font-terminal);
|
|
text-shadow: var(--glow-primary);
|
|
}
|
|
|
|
.cursor {
|
|
animation: blink 1s infinite;
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.scroll-line {
|
|
width: 2px;
|
|
height: 60px;
|
|
background: linear-gradient(
|
|
to bottom,
|
|
var(--color-primary) 0%,
|
|
transparent 100%
|
|
);
|
|
animation: scrollPulse 2s infinite;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Manifesto Section
|
|
-------------------------------------------------------------------------- */
|
|
.manifesto-cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 2rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.card {
|
|
background: var(--color-bg-light);
|
|
border: 1px solid rgba(157, 0, 255, 0.3);
|
|
border-radius: var(--border-radius);
|
|
padding: 2rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
transform: translateY(50px);
|
|
transition: all var(--animation-slow);
|
|
box-shadow: var(--shadow-medium);
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 3px;
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--color-primary),
|
|
var(--color-secondary),
|
|
var(--color-accent)
|
|
);
|
|
}
|
|
|
|
.card.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: var(--shadow-large);
|
|
border-color: var(--color-secondary);
|
|
}
|
|
|
|
.card-number {
|
|
font-family: var(--font-heading);
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
color: rgba(157, 0, 255, 0.2);
|
|
position: absolute;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.card-title {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--color-primary);
|
|
margin-bottom: 1rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
.card-text {
|
|
color: var(--color-text-dim);
|
|
font-size: 1rem;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Data Core Section
|
|
-------------------------------------------------------------------------- */
|
|
.metrics-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 4rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.metric {
|
|
text-align: center;
|
|
position: relative;
|
|
flex: 0 0 300px;
|
|
}
|
|
|
|
.progress-ring {
|
|
width: 300px;
|
|
height: 300px;
|
|
display: block;
|
|
margin: 0 auto 2rem;
|
|
filter: drop-shadow(var(--glow-primary));
|
|
}
|
|
|
|
.metric-info {
|
|
padding: 1.5rem;
|
|
background: rgba(0, 243, 255, 0.05);
|
|
border-radius: var(--border-radius);
|
|
border: 1px solid rgba(0, 243, 255, 0.1);
|
|
}
|
|
|
|
.metric-title {
|
|
font-family: var(--font-heading);
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: var(--color-primary);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.metric-value {
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
color: var(--color-text-bright);
|
|
margin-bottom: 0.5rem;
|
|
text-shadow: var(--glow-primary);
|
|
}
|
|
|
|
.unit {
|
|
font-size: 1rem;
|
|
color: var(--color-text-dim);
|
|
margin-left: 0.5rem;
|
|
}
|
|
|
|
.metric-status {
|
|
font-family: var(--font-terminal);
|
|
font-size: 0.9rem;
|
|
color: var(--color-accent);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Terminal Section
|
|
-------------------------------------------------------------------------- */
|
|
.terminal-container {
|
|
background: var(--color-terminal-bg);
|
|
border: 1px solid var(--color-terminal-border);
|
|
border-radius: var(--border-radius);
|
|
overflow: hidden;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
box-shadow: 0 0 30px rgba(0, 168, 84, 0.3);
|
|
}
|
|
|
|
.terminal-header {
|
|
background: rgba(0, 20, 10, 0.8);
|
|
border-bottom: 1px solid var(--color-terminal-border);
|
|
padding: 1rem 1.5rem;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.terminal-tabs {
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.tab {
|
|
padding: 0.5rem 1rem;
|
|
background: rgba(0, 255, 0, 0.1);
|
|
border-radius: 4px;
|
|
color: var(--color-terminal-text-dim);
|
|
font-family: var(--font-terminal);
|
|
font-size: 0.9rem;
|
|
cursor: pointer;
|
|
transition: all var(--animation-fast);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.tab.active {
|
|
background: rgba(0, 255, 0, 0.2);
|
|
color: var(--color-terminal-text);
|
|
box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
|
|
}
|
|
|
|
.tab:hover:not(.active) {
|
|
background: rgba(0, 255, 0, 0.15);
|
|
}
|
|
|
|
.terminal-controls {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.control-btn {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.6rem;
|
|
color: transparent;
|
|
transition: all var(--animation-fast);
|
|
}
|
|
|
|
.control-btn:hover {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
.control-btn.minimize {
|
|
background: #ffbd2e;
|
|
}
|
|
|
|
.control-btn.maximize {
|
|
background: #27ca3f;
|
|
}
|
|
|
|
.control-btn.close {
|
|
background: #ff5f57;
|
|
}
|
|
|
|
.terminal-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.terminal-output {
|
|
height: 400px;
|
|
overflow-y: auto;
|
|
font-family: var(--font-terminal);
|
|
font-size: 0.9rem;
|
|
line-height: 1.5;
|
|
padding: 1rem;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border-radius: 4px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.terminal-output::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
.terminal-output::-webkit-scrollbar-track {
|
|
background: rgba(0, 255, 0, 0.1);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.terminal-output::-webkit-scrollbar-thumb {
|
|
background: var(--color-terminal-text-dim);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.terminal-output::-webkit-scrollbar-thumb:hover {
|
|
background: var(--color-terminal-text);
|
|
}
|
|
|
|
.log-line {
|
|
margin-bottom: 0.75rem;
|
|
opacity: 0;
|
|
animation: fadeIn 0.5s ease forwards;
|
|
}
|
|
|
|
.timestamp {
|
|
color: var(--color-terminal-text-dim);
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.terminal-input {
|
|
padding: 0.5rem 1rem;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
border-radius: 4px;
|
|
font-family: var(--font-terminal);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.prompt {
|
|
color: var(--color-terminal-prompt);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.terminal-input .cursor {
|
|
animation: terminalBlink 0.7s infinite;
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Navigation
|
|
-------------------------------------------------------------------------- */
|
|
.main-nav {
|
|
position: fixed;
|
|
right: 2rem;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
z-index: 100;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
background: rgba(10, 10, 20, 0.8);
|
|
padding: 1.5rem 1rem;
|
|
border-radius: var(--border-radius);
|
|
backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(0, 243, 255, 0.2);
|
|
}
|
|
|
|
.nav-link {
|
|
color: var(--color-text-dim);
|
|
text-decoration: none;
|
|
font-family: var(--font-heading);
|
|
font-size: 0.9rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
transition: all var(--animation-fast);
|
|
text-align: center;
|
|
}
|
|
|
|
.nav-link:hover {
|
|
color: var(--color-primary);
|
|
background: rgba(0, 243, 255, 0.1);
|
|
}
|
|
|
|
.nav-link.active {
|
|
color: var(--color-text-bright);
|
|
background: rgba(0, 243, 255, 0.2);
|
|
box-shadow: var(--glow-primary);
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Animations
|
|
-------------------------------------------------------------------------- */
|
|
@keyframes titleReveal {
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@keyframes blink {
|
|
0%, 50% {
|
|
opacity: 1;
|
|
}
|
|
51%, 100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes terminalBlink {
|
|
0%, 50% {
|
|
opacity: 1;
|
|
}
|
|
51%, 100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes scrollPulse {
|
|
0% {
|
|
transform: translateY(0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: translateY(20px);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
/* --------------------------------------------------------------------------
|
|
Utility Classes
|
|
-------------------------------------------------------------------------- */
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.text-primary {
|
|
color: var(--color-primary);
|
|
}
|
|
|
|
.text-secondary {
|
|
color: var(--color-secondary);
|
|
}
|
|
|
|
.text-accent {
|
|
color: var(--color-accent);
|
|
}
|
|
|
|
.glow-primary {
|
|
text-shadow: var(--glow-primary);
|
|
}
|
|
|
|
.glow-secondary {
|
|
text-shadow: var(--glow-secondary);
|
|
}
|
|
|
|
.glow-accent {
|
|
text-shadow: var(--glow-accent);
|
|
}
|
|
|
|
.hidden {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
} |