* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #050505;
--panel: rgba(255,255,255,0.03);
--border: rgba(255,255,255,0.08);
--text: #d4d4d8;
--muted: #71717a;
--accent: #2AD4FF;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', sans-serif;
overflow-x: hidden;
position: relative;
}
6
.noise {
position: fixed;
inset: 0;
opacity: 0.03;
background-image: url('https://grainy-gradients.vercel.app/noise.svg');
pointer-events: none;
z-index: 999;
}
.scanlines {
position: fixed;
inset: 0;
background: repeating-linear-gradient(
to bottom,
rgba(255,255,255,0.02),
rgba(255,255,255,0.02) 1px,
transparent 1px,
transparent 4px
);
opacity: 0.05;
pointer-events: none;
z-index: 998;
}
.mono {
font-family: 'IBM Plex Mono', monospace;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.system-bar {
position: fixed;
bottom: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 10px 20px;
background: rgba(0,0,0,0.75);
border-top: 1px solid rgba(255,255,255,0.08);
font-size: 0.7rem;
color: #71717a;
z-index: 1000;
}
.navbar {
position: fixed;
top: 0;
7
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 6%;
backdrop-filter: blur(12px);
background: rgba(0,0,0,0.45);
border-bottom: 1px solid var(--border);
z-index: 1000;
}
.nav-left {
display: flex;
align-items: center;
gap: 15px;
}
.logo {
width: 45px;
height: 45px;
object-fit: contain;
}
.nav-left h2 {
font-size: 1rem;
letter-spacing: 0.3em;
}
.nav-right {
color: var(--muted);
font-size: 0.75rem;
}
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 80px;
padding: 0 8%;
position: relative;
}
.hero::before {
content: "";
position: absolute;
width: 800px;
height: 800px;
8
background: radial-gradient(circle, rgba(42,212,255,0.12), transparent 70%);
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}
.hero-tag {
color: var(--accent);
margin-bottom: 30px;
font-size: 0.8rem;
}
.hero h1 {
font-size: clamp(4rem, 9vw, 7rem);
line-height: 0.95;
max-width: 900px;
font-weight: 900;
margin-bottom: 30px;
}
.hero h1 span {
color: var(--accent);
text-shadow: 0 0 25px rgba(42,212,255,0.3);
}
.hero p {
max-width: 650px;
color: #a1a1aa;
font-size: 1.2rem;
line-height: 1.7;
}
.hero-buttons {
display: flex;
gap: 20px;
margin-top: 50px;
}
.hero-image img {
width: 100%;
border-radius: 24px;
border: 1px solid var(--border);
opacity: 0.85;
}
.btn-primary,
.btn-secondary {
9
padding: 14px 28px;
text-decoration: none;
border-radius: 999px;
transition: 0.3s ease;
}
.btn-primary {
background: var(--accent);
color: black;
font-weight: 700;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 0 40px rgba(42,212,255,0.25);
}
.btn-secondary {
border: 1px solid var(--border);
color: white;
}
.btn-secondary:hover {
border-color: var(--accent);
}
.metrics-section,
.projects,
.about-section,
.page-section {
padding: 120px 8%;
}
.section-label {
color: var(--accent);
margin-bottom: 40px;
font-size: 0.8rem;
}
.metrics-grid,
.project-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 24px;
}
.metric-card,
.project-card,
10
.content-box {
background: var(--panel);
border: 1px solid var(--border);
padding: 40px;
border-radius: 24px;
transition: 0.3s ease;
}
.metric-card:hover,
.project-card:hover,
.content-box:hover {
border-color: rgba(42,212,255,0.4);
transform: translateY(-5px);
}
.metric-card h2 {
font-size: 3rem;
margin-bottom: 15px;
}
.metric-card p,
.project-card p,
.content-box p {
color: #a1a1aa;
line-height: 1.7;
}
.project-card {
text-decoration: none;
color: white;
position: relative;
overflow: hidden;
}
.project-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
135deg,
rgba(42,212,255,0.08),
transparent 60%
);
opacity: 0;
transition: 0.3s ease;
}
.project-card:hover::before {
11
opacity: 1;
}
.project-status {
color: var(--accent);
font-size: 0.7rem;
margin-bottom: 20px;
}
.project-card h3 {
font-size: 2rem;
margin-bottom: 20px;
}
.about-box {
background: var(--panel);
border: 1px solid var(--border);
padding: 60px;
border-radius: 24px;
max-width: 1000px;
}
.about-box p {
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 30px;
}
.page-image img {
width: 100%;
margin-top: 40px;
border-radius: 24px;
border: 1px solid var(--border);
}
.subtle {
color: var(--muted);
font-size: 0.8rem;
}
footer {
display: flex;
justify-content: space-between;
padding: 40px 8% 80px;
border-top: 1px solid var(--border);
color: var(--muted);
font-size: 0.8rem;
}
12
@media(max-width: 1000px) {
.hero {
grid-template-columns: 1fr;
padding-top: 140px;
}
}
@media(max-width: 768px) {
.hero h1 {
font-size: 3.5rem;
}
.hero-buttons {
flex-direction: column;
}
.btn-primary,
.btn-secondary {
text-align: center;
}
.system-bar,
footer,
.navbar {
flex-direction: column;
gap: 10px;
}
}
