Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions website/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pausecat.0xarchit.is-a.dev
Binary file added website/assets/Cat_Cursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/assets/Cat_Pointer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions website/assets/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions website/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
46 changes: 46 additions & 0 deletions website/css/animations.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
@keyframes heroFloat {
from { transform: translateY(0); }
to { transform: translateY(-12px); }
}

@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-33.33%); }
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(28px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes textFloat {
0%,100% { transform: rotateX(20deg) rotateY(-20deg) translateZ(0); }
50% { transform: rotateX(25deg) rotateY(-15deg) translateZ(40px); }
}

@keyframes bubbleFadeIn {
from { opacity: 0; transform: scale(0.9) translateY(16px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes cursorBlink {
0%,100% { opacity: 1; }
50% { opacity: 0; }
}

@keyframes scrollCuePulse {
0%,100% { opacity: 0.4; transform: scaleY(1); }
50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* Scroll reveal classes */
.reveal {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
opacity: 1;
transform: translateY(0);
}
222 changes: 222 additions & 0 deletions website/css/components.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,222 @@
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
height: 64px;
background: rgba(13, 11, 14, 0.82);
backdrop-filter: blur(20px) saturate(160%);
border-bottom: 1px solid var(--border);
z-index: 100;
transition: border-color 0.3s;
}

nav.scrolled {
border-bottom-color: var(--border-hover);
}

.nav-content {
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
}

.nav-logo {
display: flex;
align-items: center;
gap: 12px;
text-decoration: none;
color: var(--text-primary);
font-size: 1.25rem;
font-weight: 600;
}

.nav-logo img {
height: 34px;
}

.nav-links {
display: none;
gap: 24px;
}

.nav-links a {
text-decoration: none;
color: var(--text-muted);
font-size: 0.8rem;
transition: color 0.2s;
}

.nav-links a:hover {
color: var(--text-primary);
}

.nav-actions {
display: none;
align-items: center;
gap: 16px;
}

@media (min-width: 768px) {
.nav-links { display: flex; }
.nav-actions { display: flex; }
}

/* Buttons */
.btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--pink);
color: #0D0B0E;
border-radius: var(--radius-pill);
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: clamp(0.85rem, 2.5vw, 1rem);
padding: clamp(12px, 3vw, 15px) clamp(24px, 5vw, 40px);
text-decoration: none;
transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
background: #f9a8d4;
transform: translateY(-1px);
box-shadow: var(--glow-sm);
}

.btn-primary.small {
font-size: 0.85rem;
padding: 10px 24px;
}

.btn-ghost {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: 'Syne', sans-serif;
font-weight: 600;
font-size: 0.9rem;
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
}

.btn-ghost:hover {
color: var(--text-primary);
}

.btn-ghost .arrow {
transition: transform 0.2s;
}

.btn-ghost:hover .arrow {
transform: translateX(3px);
}

.btn-outline {
display: inline-flex;
align-items: center;
border: 1px solid var(--border);
color: var(--text-secondary);
padding: 8px 16px;
border-radius: var(--radius-sm);
text-decoration: none;
font-size: 0.8rem;
transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
border-color: var(--border-hover);
color: var(--pink);
}

/* Badges & Chips */
.badge-os {
font-size: 0.72rem;
color: var(--text-muted);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 6px 14px;
display: inline-block;
}

.chip {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius-sm);
padding: 6px 12px;
font-family: 'Syne', sans-serif;
font-weight: 500;
font-size: 0.8rem;
color: var(--text-secondary);
}

.badge-mode-soft {
background: rgba(244,114,182,0.12);
border: 1px solid var(--border-pink);
color: var(--pink);
padding: 4px 10px;
border-radius: var(--radius-pill);
}

.badge-license {
color: #FCD34D;
border: 1px solid rgba(252,211,77,0.3);
padding: 4px 10px;
border-radius: var(--radius-sm);
}

code {
background: var(--bg-surface);
color: var(--pink);
padding: 2px 8px;
border-radius: var(--radius-sm);
font-size: 0.85em;
}

/* Cards */
.card {
background: var(--bg-surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
padding: 24px;
transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card:hover {
border-color: var(--border-hover);
box-shadow: var(--glow-xs);
transform: translateY(-3px);
}

.card-raised {
background: var(--bg-raised);
}

/* Stats */
.stats-strip {
display: inline-flex;
align-items: center;
gap: 16px;
opacity: 0;
animation: fadeInUp 0.6s ease forwards 0.6s;
}

.stat {
display: flex;
align-items: center;
gap: 6px;
}

.stat-icon {
font-size: 0.9em;
}

.stat-value {
color: var(--text-secondary);
}

.stat-divider {
color: var(--text-muted);
}
56 changes: 56 additions & 0 deletions website/css/layout.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
.container {
width: 100%;
max-width: var(--max-w);
margin: 0 auto;
padding: 0 1.5rem;
}

section {
padding: var(--section-pad);
}

.bg-layer {
background-color: var(--bg-layer);
}

.bg-surface {
background-color: var(--bg-surface);
}

/* Utility layout classes */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.text-center { text-align: center; }
.text-right { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

@media (min-width: 768px) {
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.md\:flex-row { flex-direction: row; }
.md\:text-left { text-align: left; }
}

@media (min-width: 1024px) {
.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
Loading
Loading