Files
intercept/docs/style.css
Smittix 9fcec6cbb8 feat: Add animated satellite/signal background to GitHub Pages
Canvas-based animation with orbiting satellite dots, signal pulse rings,
drifting particles, and a faint grid overlay. Uses the accent cyan color
at very low opacity to stay subtle. Particles brighten near the cursor.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 22:58:09 +00:00

870 lines
16 KiB
CSS

/* INTERCEPT GitHub Pages - Dark Theme */
:root {
--bg-primary: #0a0a0f;
--bg-secondary: #12121a;
--bg-card: #1a1a24;
--bg-card-hover: #22222e;
--text-primary: #f0f0f5;
--text-secondary: #8888a0;
--text-muted: #5c5c70;
--accent: #00d4aa;
--accent-hover: #00f0c0;
--accent-glow: rgba(0, 212, 170, 0.2);
--border: #2a2a38;
--code-bg: #0d0d14;
--gradient-start: #00d4aa;
--gradient-end: #0088ff;
}
/* Animated background canvas */
#bg-canvas {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
pointer-events: none;
}
body > *:not(#bg-canvas) {
position: relative;
z-index: 1;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 100;
background: rgba(10, 10, 15, 0.9);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
}
.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-family: 'JetBrains Mono', monospace;
font-size: 1.25rem;
font-weight: 600;
color: var(--accent);
text-decoration: none;
letter-spacing: 2px;
}
.nav-links {
display: flex;
align-items: center;
gap: 32px;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s;
}
.nav-links a:hover {
color: var(--text-primary);
}
.nav-btn {
background: var(--accent);
color: var(--bg-primary) !important;
padding: 8px 20px;
border-radius: 6px;
font-weight: 600;
}
.nav-btn:hover {
background: var(--accent-hover);
}
/* Hero */
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 60px;
padding: 120px 24px 80px;
max-width: 1400px;
margin: 0 auto;
}
.hero-badge {
display: inline-block;
font-family: 'JetBrains Mono', monospace;
font-size: 0.75rem;
color: var(--accent);
background: var(--accent-glow);
padding: 6px 14px;
border-radius: 20px;
border: 1px solid var(--accent);
margin-bottom: 24px;
letter-spacing: 1px;
text-transform: uppercase;
}
.hero h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 4.5rem;
font-weight: 700;
letter-spacing: 8px;
margin-bottom: 24px;
background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-subtitle {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: 40px;
max-width: 500px;
line-height: 1.8;
}
.hero-buttons {
display: flex;
gap: 16px;
margin-bottom: 60px;
}
.btn {
display: inline-block;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
text-decoration: none;
transition: all 0.2s;
font-size: 0.95rem;
}
.btn-primary {
background: var(--accent);
color: var(--bg-primary);
}
.btn-primary:hover {
background: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 8px 30px var(--accent-glow);
}
.btn-secondary {
background: transparent;
color: var(--text-primary);
border: 1px solid var(--border);
}
.btn-secondary:hover {
border-color: var(--text-secondary);
background: var(--bg-card);
}
.hero-stats {
display: flex;
gap: 48px;
}
.stat {
display: flex;
flex-direction: column;
}
.stat-value {
font-family: 'JetBrains Mono', monospace;
font-size: 2rem;
font-weight: 600;
color: var(--accent);
}
.stat-label {
font-size: 0.85rem;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 1px;
}
.hero-image {
position: relative;
}
.hero-image img {
width: 100%;
border-radius: 12px;
border: 1px solid var(--border);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
/* Sections */
section {
padding: 100px 0;
}
section h2 {
font-family: 'JetBrains Mono', monospace;
font-size: 2.5rem;
font-weight: 600;
text-align: center;
margin-bottom: 16px;
letter-spacing: 2px;
}
.section-subtitle {
text-align: center;
color: var(--text-secondary);
font-size: 1.1rem;
margin-bottom: 60px;
}
/* Features */
.features {
background: var(--bg-secondary);
}
/* Category filter tabs */
.carousel-filters {
display: flex;
justify-content: center;
gap: 8px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.filter-btn {
font-family: 'JetBrains Mono', monospace;
font-size: 0.8rem;
font-weight: 500;
padding: 8px 20px;
border-radius: 20px;
border: 1px solid var(--border);
background: transparent;
color: var(--text-secondary);
cursor: pointer;
transition: all 0.25s;
letter-spacing: 0.5px;
}
.filter-btn:hover {
border-color: var(--accent);
color: var(--text-primary);
}
.filter-btn.active {
background: var(--accent);
color: var(--bg-primary);
border-color: var(--accent);
}
/* Carousel */
.carousel-wrapper {
position: relative;
padding: 0 56px;
}
.carousel-track {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
padding: 8px 0 16px;
}
.carousel-track::-webkit-scrollbar {
display: none;
}
.feature-card {
flex: 0 0 280px;
scroll-snap-align: start;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 32px 24px;
transition: all 0.3s;
min-height: 200px;
}
.feature-card.hidden {
display: none;
}
.feature-card:hover {
background: var(--bg-card-hover);
border-color: var(--accent);
transform: translateY(-4px);
}
.feature-icon {
width: 36px;
height: 36px;
margin-bottom: 16px;
color: var(--accent);
}
.feature-icon svg {
width: 100%;
height: 100%;
}
.feature-card h3 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 12px;
color: var(--text-primary);
}
.feature-card p {
font-size: 0.9rem;
color: var(--text-secondary);
line-height: 1.7;
}
/* Carousel arrows */
.carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border-radius: 50%;
border: 1px solid var(--border);
background: var(--bg-card);
color: var(--text-primary);
font-size: 1.5rem;
cursor: pointer;
transition: all 0.25s;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
line-height: 1;
}
.carousel-arrow:hover {
background: var(--bg-card-hover);
border-color: var(--accent);
color: var(--accent);
}
.carousel-arrow:disabled {
opacity: 0.3;
cursor: default;
}
.carousel-arrow:disabled:hover {
background: var(--bg-card);
border-color: var(--border);
color: var(--text-primary);
}
.carousel-arrow-left {
left: 0;
}
.carousel-arrow-right {
right: 0;
}
/* Carousel indicators */
.carousel-indicators {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 28px;
}
.carousel-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--border);
border: none;
cursor: pointer;
transition: all 0.25s;
padding: 0;
}
.carousel-dot.active {
background: var(--accent);
width: 24px;
border-radius: 4px;
}
.carousel-dot:hover {
background: var(--text-muted);
}
/* Screenshots */
.screenshot-gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.screenshot-item {
position: relative;
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--border);
transition: all 0.3s;
cursor: pointer;
}
.screenshot-item:hover {
border-color: var(--accent);
transform: translateY(-4px);
box-shadow: 0 12px 40px rgba(0, 212, 170, 0.15);
}
.screenshot-item img {
width: 100%;
height: auto;
display: block;
}
.screenshot-label {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 16px;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
font-size: 0.9rem;
color: var(--text-primary);
font-weight: 500;
}
/* Lightbox */
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
z-index: 1000;
justify-content: center;
align-items: center;
flex-direction: column;
padding: 20px;
}
.lightbox.active {
display: flex;
}
.lightbox-close {
position: absolute;
top: 20px;
right: 30px;
font-size: 40px;
color: var(--text-primary);
cursor: pointer;
transition: color 0.2s;
z-index: 1001;
}
.lightbox-close:hover {
color: var(--accent);
}
.lightbox-img {
max-width: 90%;
max-height: 80vh;
border-radius: 8px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
margin-top: 20px;
font-size: 1.1rem;
color: var(--text-secondary);
font-weight: 500;
}
/* Installation */
.installation {
background: var(--bg-secondary);
}
.install-options {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-bottom: 48px;
}
.install-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 32px;
}
.install-card h3 {
font-size: 1.2rem;
margin-bottom: 20px;
color: var(--text-primary);
}
.code-block {
background: var(--code-bg);
border-radius: 8px;
padding: 20px;
overflow-x: auto;
margin-bottom: 16px;
}
.code-block pre {
margin: 0;
}
.code-block code {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
color: var(--accent);
line-height: 1.8;
}
.install-note {
font-size: 0.85rem;
color: var(--text-muted);
}
.platform-note {
background: var(--bg-card);
border: 1px solid var(--border);
border-left: 3px solid var(--accent);
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 32px;
}
.platform-note p {
font-size: 0.9rem;
color: var(--text-secondary);
margin: 0;
}
.platform-note strong {
color: var(--text-primary);
}
.post-install {
text-align: center;
padding: 32px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
}
.post-install p {
margin-bottom: 8px;
color: var(--text-secondary);
}
.post-install code {
font-family: 'JetBrains Mono', monospace;
background: var(--code-bg);
padding: 4px 10px;
border-radius: 4px;
color: var(--accent);
}
/* Hardware */
.hardware-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-bottom: 32px;
}
.hardware-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
padding: 32px;
text-align: center;
position: relative;
}
.hardware-tag {
position: absolute;
top: 16px;
right: 16px;
font-size: 0.7rem;
padding: 4px 10px;
border-radius: 12px;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: 600;
}
.hardware-card.required .hardware-tag {
background: var(--accent-glow);
color: var(--accent);
border: 1px solid var(--accent);
}
.hardware-card.optional .hardware-tag {
background: rgba(136, 136, 160, 0.1);
color: var(--text-secondary);
border: 1px solid var(--border);
}
.hardware-card h3 {
font-size: 1.2rem;
margin-bottom: 12px;
margin-top: 8px;
}
.hardware-card p {
font-size: 0.9rem;
color: var(--text-secondary);
margin-bottom: 16px;
}
.hardware-card .price {
font-family: 'JetBrains Mono', monospace;
font-size: 1.5rem;
color: var(--accent);
font-weight: 600;
}
.hardware-note {
text-align: center;
color: var(--text-muted);
font-size: 0.9rem;
}
/* CTA */
.cta {
background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 136, 255, 0.1));
text-align: center;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.cta h2 {
margin-bottom: 16px;
}
.cta p {
color: var(--text-secondary);
margin-bottom: 32px;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 16px;
}
/* Footer */
.footer {
background: var(--bg-secondary);
padding: 60px 0 32px;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 32px;
border-bottom: 1px solid var(--border);
margin-bottom: 32px;
}
.footer-logo {
font-family: 'JetBrains Mono', monospace;
font-size: 1.25rem;
font-weight: 600;
color: var(--accent);
letter-spacing: 2px;
}
.footer-brand p {
color: var(--text-muted);
font-size: 0.9rem;
margin-top: 8px;
}
.footer-links {
display: flex;
gap: 32px;
}
.footer-links a {
color: var(--text-secondary);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
}
.footer-links a:hover {
color: var(--accent);
}
.footer-bottom {
text-align: center;
}
.footer-bottom p {
color: var(--text-muted);
font-size: 0.85rem;
margin-bottom: 8px;
}
.footer-bottom a {
color: var(--accent);
text-decoration: none;
}
.disclaimer {
font-style: italic;
opacity: 0.7;
}
/* Responsive */
@media (max-width: 1024px) {
.hero {
grid-template-columns: 1fr;
text-align: center;
padding-top: 100px;
}
.hero-subtitle {
max-width: 100%;
}
.hero-buttons {
justify-content: center;
}
.hero-stats {
justify-content: center;
}
.hero-image {
order: -1;
max-width: 600px;
margin: 0 auto;
}
.carousel-wrapper {
padding: 0 48px;
}
.feature-card {
flex: 0 0 260px;
}
.screenshot-gallery {
grid-template-columns: repeat(2, 1fr);
}
.install-options {
grid-template-columns: 1fr;
}
.hardware-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 640px) {
.hero h1 {
font-size: 2.5rem;
letter-spacing: 4px;
}
.hero-stats {
flex-direction: column;
gap: 24px;
}
.carousel-wrapper {
padding: 0 4px;
}
.carousel-arrow {
display: none;
}
.feature-card {
flex: 0 0 260px;
}
.carousel-filters {
gap: 6px;
}
.filter-btn {
font-size: 0.7rem;
padding: 6px 14px;
}
.screenshot-gallery {
grid-template-columns: 1fr;
}
.nav-links {
display: none;
}
.footer-content {
flex-direction: column;
gap: 24px;
text-align: center;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
}