First Version

This commit is contained in:
2026-04-17 00:26:03 +01:00
parent aecd1a5574
commit c826ed6502
37 changed files with 4862 additions and 19 deletions

42
css/about.css Normal file
View File

@@ -0,0 +1,42 @@
/*
* About Section Styles
*/
.about {
padding: 8rem 0;
}
.about-inner {
max-width: 680px;
margin: 0 auto;
text-align: center;
}
.about-eyebrow {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1rem;
display: block;
}
.about h2 {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 1.75rem;
color: var(--text);
}
.about p {
color: var(--text-muted);
font-size: 1.05rem;
line-height: 1.85;
margin-bottom: 1rem;
}
.about p:last-child {
margin-bottom: 0;
}

57
css/base.css Normal file
View File

@@ -0,0 +1,57 @@
/*
* Base Styles - Reset and foundational styles
*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
transition: background-color 0.3s ease, color 0.3s ease;
}
.container {
max-width: 1100px;
margin: 0 auto;
padding: 0 2rem;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: var(--accent-light);
}
.skip-link {
position: absolute;
left: 1rem;
top: -3rem;
z-index: 2000;
background: var(--accent);
color: #fff;
text-decoration: none;
font-weight: 700;
padding: 0.75rem 1rem;
border-radius: 10px;
box-shadow: 0 8px 24px var(--accent-glow);
transition: top 0.2s ease;
}
.skip-link:focus {
top: 1rem;
}

67
css/buttons.css Normal file
View File

@@ -0,0 +1,67 @@
/*
* Button Styles
*/
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 2rem;
background: var(--accent);
color: #fff;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.25s ease;
box-shadow: 0 4px 24px var(--accent-glow);
border: none;
cursor: pointer;
}
.btn:hover {
background: var(--accent-light);
transform: translateY(-2px);
box-shadow: 0 8px 32px var(--accent-glow);
color: #fff;
text-decoration: none;
}
.btn-outline {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.875rem 2rem;
background: var(--bg-card);
border: 1px solid var(--glass-border);
color: var(--text-2);
text-decoration: none;
border-radius: 10px;
font-weight: 600;
font-size: 0.95rem;
transition: all 0.25s ease;
backdrop-filter: blur(10px);
cursor: pointer;
}
.btn-outline:hover {
border-color: var(--accent);
color: var(--accent-light);
background: var(--bg-card-hover);
transform: translateY(-2px);
box-shadow: 0 4px 16px var(--accent-glow-sm);
text-decoration: none;
}
a:focus-visible,
button:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 3px;
border-radius: 4px;
}
.btn:focus-visible,
.btn-outline:focus-visible {
outline: 2px solid var(--accent-light);
outline-offset: 3px;
}

171
css/cards.css Normal file
View File

@@ -0,0 +1,171 @@
/*
* Card Styles
*/
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2.5rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
box-shadow:
0 4px 24px var(--shadow-deep),
inset 0 1px 0 var(--inset-shine);
transition: all 0.35s ease;
position: relative;
overflow: hidden;
}
.card::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.card:hover {
border-color: var(--glass-border-hover);
transform: translateY(-6px);
box-shadow:
0 20px 48px var(--shadow-deep),
0 0 0 1px var(--accent-glow-sm),
inset 0 1px 0 var(--inset-shine);
}
.card:hover::after {
opacity: 1;
}
.card-icon {
width: 52px;
height: 52px;
background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.5rem;
box-shadow: 0 4px 16px var(--accent-glow);
}
.card-icon svg {
width: 24px;
height: 24px;
stroke: #fff;
}
.card .badge {
display: inline-block;
padding: 0.3rem 0.85rem;
background: var(--accent-glow-sm);
border: 1px solid var(--accent-glow);
color: var(--accent-light);
font-size: 0.7rem;
font-weight: 700;
border-radius: 6px;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1.25rem;
}
.card h3 {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text);
letter-spacing: -0.3px;
}
.card p {
color: var(--text-muted);
font-size: 0.95rem;
line-height: 1.8;
margin-bottom: 2rem;
}
.card-link {
color: var(--accent);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
display: inline-flex;
align-items: center;
gap: 0.4rem;
transition: all 0.2s;
}
.card-link:hover {
color: var(--accent-light);
gap: 0.8rem;
text-decoration: none;
}
/* Feature cards */
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
gap: 1.5rem;
}
.feature-card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(16px);
transition: all 0.3s ease;
}
.feature-card:hover {
border-color: var(--glass-border-hover);
transform: translateY(-4px);
}
.feature-card h3 {
font-size: 1.15rem;
font-weight: 700;
color: var(--accent);
margin-bottom: 0.6rem;
}
.feature-card p {
color: var(--text-muted);
font-size: 0.9rem;
line-height: 1.7;
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(28px) scale(0.98);
transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
opacity: 1;
transform: translateY(0) scale(1);
}
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
.reveal {
opacity: 1;
transform: none;
transition: none;
}
}

143
css/contact.css Normal file
View File

@@ -0,0 +1,143 @@
/*
* Contact Page Styles
*/
.contact-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
margin-bottom: 4rem;
}
.contact-card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.contact-card::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--accent), transparent);
opacity: 0;
transition: opacity 0.3s;
}
.contact-card:hover {
border-color: var(--glass-border-hover);
transform: translateY(-4px);
box-shadow: 0 16px 40px var(--shadow-deep);
}
.contact-card:hover::after { opacity: 1; }
.contact-card-icon {
width: 44px;
height: 44px;
background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1.25rem;
box-shadow: 0 4px 12px var(--accent-glow);
}
.contact-card-icon svg {
width: 20px;
height: 20px;
stroke: #fff;
}
.contact-card h3 {
font-size: 1.1rem;
font-weight: 700;
color: var(--text);
margin-bottom: 0.5rem;
}
.contact-card p {
color: var(--text-muted);
font-size: 0.9rem;
line-height: 1.65;
margin-bottom: 1.25rem;
}
.contact-card a.contact-email {
display: inline-flex;
align-items: center;
gap: 0.4rem;
color: var(--accent);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.2s;
}
.contact-card a.contact-email:hover {
color: var(--accent-light);
gap: 0.7rem;
}
.contact-note {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-left: 3px solid var(--accent);
border-radius: 0 12px 12px 0;
padding: 1.25rem 1.5rem;
color: var(--text-muted);
font-size: 0.9rem;
line-height: 1.7;
}
.contact-note strong {
color: var(--text-2);
}
/* Coming soon */
.coming-soon-hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
padding: 8rem 2rem 6rem;
overflow: hidden;
}
.coming-soon-content {
position: relative;
z-index: 1;
max-width: 600px;
}
.coming-soon-badge {
display: inline-block;
padding: 0.5rem 1.25rem;
background: var(--accent-glow-sm);
border: 1px solid var(--accent-glow);
color: var(--accent-light);
font-size: 0.75rem;
font-weight: 700;
border-radius: 100px;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 2rem;
}
.coming-soon-cta {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}

107
css/footer.css Normal file
View File

@@ -0,0 +1,107 @@
/*
* Footer Styles
*/
.footer {
padding: 5rem 0 2.5rem;
border-top: 1px solid var(--divider);
}
.footer-inner {
display: grid;
grid-template-columns: 1fr auto auto;
gap: 4rem;
margin-bottom: 3.5rem;
align-items: start;
}
.footer-logo {
font-size: 1.35rem;
font-weight: 800;
color: var(--text);
letter-spacing: -0.5px;
display: block;
margin-bottom: 0.6rem;
text-decoration: none;
}
.footer-logo span {
color: var(--accent);
}
.footer-brand p {
color: var(--text-muted);
font-size: 0.9rem;
max-width: 260px;
line-height: 1.7;
}
.footer-links-col {
display: flex;
flex-direction: column;
gap: 0.5rem;
min-width: 140px;
}
.footer-links-col h4 {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-bottom: 0.75rem;
}
.footer-links-col a {
color: var(--text-2);
text-decoration: none;
font-size: 0.9rem;
font-weight: 500;
transition: color 0.2s;
}
.footer-links-col a:hover {
color: var(--accent-light);
}
.footer-bottom {
padding-top: 2rem;
border-top: 1px solid var(--divider);
}
.footer-bottom p {
color: var(--text-muted);
font-size: 0.85rem;
}
/* Footer community links */
.footer-community {
display: flex;
gap: 0.75rem;
margin-top: 1rem;
}
.footer-community a {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 8px;
color: var(--text-muted);
text-decoration: none;
transition: all 0.2s;
}
.footer-community a:hover {
border-color: var(--accent-glow);
color: var(--accent-light);
background: var(--bg-card-hover);
}
.footer-community svg {
width: 16px;
height: 16px;
}

118
css/hero.css Normal file
View File

@@ -0,0 +1,118 @@
/*
* Hero Styles
*/
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
padding: 8rem 2rem 6rem;
overflow: hidden;
}
.hero-bg {
position: absolute;
inset: 0;
background:
radial-gradient(ellipse 90% 65% at 50% -5%, var(--hero-glow-1) 0%, transparent 55%),
radial-gradient(ellipse 50% 40% at 85% 85%, var(--hero-glow-2) 0%, transparent 55%),
radial-gradient(ellipse 40% 35% at 10% 80%, var(--hero-glow-2) 0%, transparent 55%),
var(--bg);
z-index: 0;
}
.hero-grid {
position: absolute;
inset: 0;
background-image: radial-gradient(circle, var(--accent-glow-sm) 1px, transparent 1px);
background-size: 48px 48px;
opacity: 0;
animation: gridFadeIn 2s ease 0.4s forwards, gridDrift 40s ease-in-out 2.4s infinite;
pointer-events: none;
-webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 820px;
animation: heroEntrance 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-tag {
display: inline-block;
padding: 0.4rem 1.1rem;
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 100px;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 2rem;
backdrop-filter: blur(10px);
}
.hero h1 {
font-size: 5.5rem;
font-weight: 900;
line-height: 1;
letter-spacing: -3px;
color: var(--text);
margin-bottom: 1.5rem;
}
.hero h1 span {
color: var(--accent);
filter: drop-shadow(0 0 28px var(--accent-glow));
}
.hero-subtitle {
font-size: 1.2rem;
color: var(--text-muted);
max-width: 520px;
margin: 0 auto 2.75rem;
line-height: 1.75;
}
.hero-cta {
display: flex;
gap: 1.25rem;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}
/* Hero animation keyframes */
@keyframes gridFadeIn {
to { opacity: 0.35; }
}
@keyframes gridDrift {
0%, 100% { transform: translate(0, 0); }
33% { transform: translate(6px, -8px); }
66% { transform: translate(-6px, 4px); }
}
@keyframes heroEntrance {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
/* Reduced motion - hero */
@media (prefers-reduced-motion: reduce) {
.hero-grid {
animation: none;
opacity: 0.2;
}
.hero-content {
animation: none;
opacity: 1;
transform: none;
}
}

46
css/index.css Normal file
View File

@@ -0,0 +1,46 @@
/*
* ArcaneNeko Website Styles
* Import order matters - later files can override earlier ones
*/
/* Theme variables (must come first) */
@import url('./themes.css');
/* Base styles */
@import url('./base.css');
/* Navbar */
@import url('./navbar.css');
/* Hero */
@import url('./hero.css');
/* Buttons */
@import url('./buttons.css');
/* Stats */
@import url('./stats.css');
/* About */
@import url('./about.css');
/* Sections */
@import url('./sections.css');
/* Cards */
@import url('./cards.css');
/* Footer */
@import url('./footer.css');
/* Legal pages */
@import url('./legal.css');
/* Contact & Coming Soon */
@import url('./contact.css');
/* Utilities */
@import url('./utility.css');
/* Responsive (must come last) */
@import url('./responsive.css');

432
css/legal.css Normal file
View File

@@ -0,0 +1,432 @@
/*
* Legal Page Styles
*/
/* Hero */
.legal-hero {
padding: 9rem 2rem 4rem;
background:
radial-gradient(ellipse 70% 50% at 50% -10%, var(--hero-glow-1) 0%, transparent 55%),
var(--bg);
border-bottom: 1px solid var(--divider);
text-align: center;
}
.legal-hero .legal-tag {
display: inline-block;
padding: 0.35rem 1rem;
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 100px;
font-size: 0.75rem;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 1.25rem;
}
.legal-hero h1 {
font-size: 2.75rem;
font-weight: 900;
letter-spacing: -1.5px;
margin-bottom: 0.75rem;
color: var(--text);
}
.legal-hero h1 span {
color: var(--accent);
}
.legal-hero .legal-meta {
color: var(--text-muted);
font-size: 0.9rem;
margin-bottom: 0;
}
/* Layout */
.legal-wrap {
display: grid;
grid-template-columns: 220px 1fr;
gap: 4rem;
max-width: 1100px;
margin: 0 auto;
padding: 4rem 2rem 6rem;
align-items: start;
}
/* TOC */
.legal-toc {
position: sticky;
top: 90px;
}
.legal-toc h4 {
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--text-muted);
margin-bottom: 1rem;
}
.legal-toc ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.15rem;
}
.legal-toc a {
display: block;
color: var(--text-muted);
text-decoration: none;
font-size: 0.85rem;
font-weight: 500;
padding: 0.45rem 0.75rem;
border-radius: 7px;
border-left: 2px solid transparent;
transition: all 0.2s;
line-height: 1.4;
}
.legal-toc a:hover,
.legal-toc a.active {
color: var(--accent-light);
background: var(--bg-card);
border-left-color: var(--accent);
}
/* Content */
.legal-content {
min-width: 0;
scroll-margin-top: 90px;
}
.legal-section {
margin-bottom: 3.5rem;
padding-bottom: 3.5rem;
border-bottom: 1px solid var(--divider);
scroll-margin-top: 92px;
}
.legal-section:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}
.legal-section h2 {
font-size: 1.4rem;
font-weight: 700;
color: var(--text);
margin-bottom: 1.25rem;
letter-spacing: -0.3px;
display: flex;
align-items: center;
gap: 0.75rem;
}
.legal-section h2 .section-num {
font-size: 0.75rem;
font-weight: 700;
color: var(--accent);
background: var(--accent-glow-sm);
border: 1px solid var(--accent-glow);
border-radius: 5px;
padding: 0.2rem 0.55rem;
letter-spacing: 0;
flex-shrink: 0;
}
.legal-section h3 {
font-size: 1.05rem;
font-weight: 700;
color: var(--text);
margin: 1.75rem 0 0.6rem;
}
.legal-section p {
color: var(--text-2);
font-size: 0.98rem;
line-height: 1.85;
margin-bottom: 1rem;
}
.legal-section p:last-child {
margin-bottom: 0;
}
.legal-section ul,
.legal-section ol {
color: var(--text-2);
font-size: 0.98rem;
line-height: 1.85;
padding-left: 1.5rem;
margin-bottom: 1rem;
}
.legal-section ul li,
.legal-section ol li {
margin-bottom: 0.4rem;
}
.legal-section a {
color: var(--accent);
text-decoration: none;
}
.legal-section a:hover {
text-decoration: underline;
color: var(--accent-light);
}
/* Callouts */
.callout {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1.25rem 1.5rem;
margin: 1.5rem 0;
backdrop-filter: blur(10px);
}
.callout.callout--info {
border-left: 3px solid var(--accent);
}
.callout.callout--lock {
border-left: 3px solid #22c55e;
}
.callout .callout-title {
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.5rem;
}
.callout.callout--info .callout-title { color: var(--accent); }
.callout.callout--lock .callout-title { color: #22c55e; }
.callout p {
margin-bottom: 0 !important;
font-size: 0.9rem !important;
}
/* Data table */
.data-table {
width: 100%;
border-collapse: collapse;
margin: 1.25rem 0;
font-size: 0.875rem;
}
.data-table th {
text-align: left;
padding: 0.75rem 1rem;
background: var(--bg-card);
color: var(--text-muted);
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
border-bottom: 1px solid var(--divider);
}
.data-table th:first-child { border-radius: 8px 0 0 0; }
.data-table th:last-child { border-radius: 0 8px 0 0; }
.data-table td {
padding: 0.85rem 1rem;
color: var(--text-2);
border-bottom: 1px solid var(--divider);
vertical-align: top;
line-height: 1.6;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td:first-child {
font-weight: 600;
white-space: nowrap;
}
/* Section kicker */
.section-kicker {
display: inline-block;
margin-bottom: 0.75rem;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
}
.legal-at-a-glance,
.legal-overview {
margin-bottom: 3.5rem;
}
.legal-at-a-glance h2,
.legal-overview h2 {
font-size: 1.65rem;
letter-spacing: -0.4px;
margin-bottom: 1rem;
}
/* Summary/Comparison grids */
.summary-grid,
.comparison-grid,
.action-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1rem;
}
.summary-card,
.comparison-card,
.action-card {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 1.15rem 1.1rem;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 24px var(--shadow-deep), inset 0 1px 0 var(--inset-shine);
}
.summary-card h3,
.comparison-card h3,
.action-card strong {
color: var(--text);
font-size: 1rem;
margin-bottom: 0.45rem;
display: block;
}
.summary-card p,
.comparison-card p,
.action-card p {
color: var(--text-2);
font-size: 0.92rem;
line-height: 1.7;
margin: 0;
}
.comparison-card h3,
.summary-card h3 {
margin-top: 0;
}
.answer-strip {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.9rem;
margin: 1.1rem 0 0;
}
.answer-strip > div {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 0.9rem 1rem;
}
.answer-strip strong {
display: block;
color: var(--text);
font-size: 0.88rem;
margin-bottom: 0.25rem;
}
.answer-strip span,
.answer-strip a {
color: var(--text-2);
font-size: 0.88rem;
line-height: 1.55;
}
.mini-summary {
margin: 0 0 1rem;
padding: 0.95rem 1rem;
border-radius: 12px;
background: linear-gradient(180deg, var(--bg-card), transparent), var(--bg-card);
border: 1px solid var(--glass-border);
color: var(--text-2);
line-height: 1.7;
}
.mini-summary strong {
color: var(--text);
}
.action-card {
text-decoration: none;
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.action-card:hover {
transform: translateY(-2px);
border-color: var(--glass-border-hover);
background: var(--bg-card-hover);
}
.action-label {
display: inline-block;
margin-bottom: 0.5rem;
font-size: 0.74rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent);
}
/* TOC toggle */
.legal-toc-toggle {
display: none;
width: 100%;
align-items: center;
justify-content: space-between;
background: var(--bg-card);
border: 1px solid var(--glass-border);
color: var(--text);
border-radius: 12px;
padding: 0.95rem 1rem;
font: inherit;
font-weight: 700;
cursor: pointer;
}
.legal-toc-panel {
display: block;
}
.legal-toc-toggle::after {
content: '\25BE';
color: var(--accent);
font-size: 0.95rem;
transition: transform 0.2s ease;
}
.legal-toc-toggle[aria-expanded="true"]::after {
transform: rotate(180deg);
}
/* Demo section */
.demo {
padding: 8rem 0;
text-align: center;
}
.demo-desc {
color: var(--text-muted);
margin-bottom: 2.5rem;
font-size: 1.1rem;
}
.features {
padding: 8rem 0;
background: var(--bg-alt);
}

162
css/navbar.css Normal file
View File

@@ -0,0 +1,162 @@
/*
* Navbar Styles
*/
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: var(--nav-bg);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
border-bottom: 1px solid var(--nav-border);
z-index: 1000;
}
.nav-container {
max-width: 1100px;
margin: 0 auto;
padding: 0.9rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-size: 1.35rem;
font-weight: 800;
color: var(--text);
text-decoration: none;
letter-spacing: -0.5px;
}
.nav-logo span {
color: var(--accent);
}
.nav-links {
display: flex;
list-style: none;
gap: 2.25rem;
}
.nav-links a {
color: var(--text-muted);
text-decoration: none;
font-weight: 500;
font-size: 0.9rem;
transition: color 0.2s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: var(--accent);
border-radius: 2px;
transition: width 0.25s ease;
box-shadow: 0 0 8px var(--accent-glow);
}
.nav-links a:hover {
color: var(--text);
}
.nav-links a:hover::after {
width: 100%;
}
.nav-actions {
display: flex;
align-items: center;
gap: 0.75rem;
}
.theme-toggle {
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 0;
cursor: pointer;
color: var(--text-muted);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
width: 36px;
height: 36px;
flex-shrink: 0;
}
.theme-toggle:hover {
color: var(--accent);
border-color: var(--accent-glow);
background: var(--bg-card-hover);
box-shadow: 0 0 12px var(--accent-glow-sm);
}
.theme-toggle svg {
width: 16px;
height: 16px;
}
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 4px;
}
.hamburger span {
display: block;
width: 22px;
height: 2px;
background: var(--text-2);
border-radius: 2px;
transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
display: none;
flex-direction: column;
border-top: 1px solid var(--nav-border);
background: var(--nav-bg);
backdrop-filter: blur(24px);
-webkit-backdrop-filter: blur(24px);
}
.mobile-menu.open {
display: flex;
}
.mobile-menu a {
color: var(--text-2);
text-decoration: none;
font-size: 1rem;
font-weight: 500;
padding: 1rem 2rem;
border-bottom: 1px solid var(--divider);
transition: all 0.2s;
}
.mobile-menu a:last-child {
border-bottom: none;
}
.mobile-menu a:hover {
color: var(--accent);
background: var(--bg-card);
padding-left: 2.5rem;
}

146
css/responsive.css Normal file
View File

@@ -0,0 +1,146 @@
/*
* Responsive Styles - Mobile/tablet breakpoints
*/
@media (max-width: 768px) {
.nav-links {
display: none;
}
.hamburger {
display: flex;
}
.hero h1 {
font-size: 3.5rem;
letter-spacing: -2px;
}
.hero-subtitle {
font-size: 1rem;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.about h2,
.section-title {
font-size: 2rem;
}
.card-grid {
grid-template-columns: 1fr;
}
.footer-inner {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}
.footer-brand {
grid-column: 1 / -1;
}
/* Legal pages */
.legal-wrap {
grid-template-columns: 1fr;
}
.legal-toc {
position: static;
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1.25rem 1.5rem;
}
.legal-toc ul {
flex-direction: row;
flex-wrap: wrap;
gap: 0.35rem;
}
.legal-toc a {
border-left: none;
border-bottom: 2px solid transparent;
padding: 0.3rem 0.5rem;
font-size: 0.8rem;
}
.legal-toc a:hover,
.legal-toc a.active {
border-left-color: transparent;
border-bottom-color: var(--accent);
}
.data-table {
display: block;
overflow-x: auto;
}
.summary-grid,
.comparison-grid,
.action-grid,
.answer-strip {
grid-template-columns: 1fr;
}
.legal-toc {
padding: 0;
background: transparent;
border: none;
}
.legal-toc-toggle {
display: flex;
}
.legal-toc-panel {
display: none;
margin-top: 0.75rem;
background: var(--bg-card);
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1rem;
}
.legal-toc.open .legal-toc-panel {
display: block;
}
.legal-toc ul {
flex-direction: column;
gap: 0.2rem;
}
.legal-toc a {
border-bottom: none;
padding: 0.5rem 0.6rem;
font-size: 0.88rem;
}
.legal-hero h1 {
font-size: 2rem;
letter-spacing: -1px;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 2.75rem;
letter-spacing: -1.5px;
}
.hero-cta {
flex-direction: column;
align-items: center;
}
.btn,
.btn-outline {
width: 100%;
justify-content: center;
}
}

53
css/sections.css Normal file
View File

@@ -0,0 +1,53 @@
/*
* Generic Section Styles
*/
.section {
padding: 6rem 0;
position: relative;
}
.alt-bg {
background: var(--bg-alt);
}
.alt-bg::before,
.section::before {
content: '';
position: absolute;
top: 0;
left: 5%;
right: 5%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--divider), transparent);
}
.section-label {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--accent);
display: block;
margin-bottom: 0.75rem;
}
.section-title {
font-size: 2.5rem;
font-weight: 800;
letter-spacing: -1px;
margin-bottom: 3rem;
color: var(--text);
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 36px;
height: 3px;
background: var(--accent);
border-radius: 2px;
margin-top: 0.85rem;
box-shadow: 0 0 12px var(--accent-glow);
}

59
css/stats.css Normal file
View File

@@ -0,0 +1,59 @@
/*
* Stats Bar Styles
*/
.stats-bar {
background: var(--stats-bg);
border-top: 1px solid var(--stats-border);
border-bottom: 1px solid var(--stats-border);
padding: 1.25rem 0;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.75rem;
text-align: center;
}
.stat {
display: flex;
flex-direction: column;
gap: 0.15rem;
}
.stat-value {
font-size: 1.6rem;
font-weight: 900;
color: var(--accent);
letter-spacing: -0.5px;
line-height: 1;
}
.stat-label {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-top: 0.25rem;
}
.stat {
animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
animation-play-state: paused;
}
.stat.animated {
animation-play-state: running;
}
.stat:nth-child(1) { animation-delay: 0s; }
.stat:nth-child(2) { animation-delay: 0.1s; }
.stat:nth-child(3) { animation-delay: 0.2s; }
.stat:nth-child(4) { animation-delay: 0.3s; }
@keyframes statPop {
from { opacity: 0; transform: translateY(12px) scale(0.9); }
to { opacity: 1; transform: translateY(0) scale(1); }
}

82
css/themes.css Normal file
View File

@@ -0,0 +1,82 @@
/*
* Theme Variables - Edit these to create new themes
*/
:root,
[data-theme="crimson"] {
--bg: #07040a;
--bg-alt: #0d070c;
--bg-card: rgba(255, 255, 255, 0.04);
--bg-card-hover: rgba(255, 255, 255, 0.07);
--glass-border: rgba(255, 255, 255, 0.08);
--glass-border-hover: rgba(220, 20, 60, 0.45);
--accent: #dc143c;
--accent-light: #ff1744;
--accent-dark: #960f2c;
--accent-glow: rgba(220, 20, 60, 0.35);
--accent-glow-sm: rgba(220, 20, 60, 0.18);
--text: #ffffff;
--text-2: #ddd0d4;
--text-muted: #8c7a80;
--nav-bg: rgba(7, 4, 10, 0.85);
--nav-border: rgba(255, 255, 255, 0.06);
--stats-bg: rgba(220, 20, 60, 0.07);
--stats-border: rgba(220, 20, 60, 0.18);
--divider: rgba(255, 255, 255, 0.06);
--shadow-deep: rgba(0, 0, 0, 0.6);
--inset-shine: rgba(255, 255, 255, 0.04);
--hero-glow-1: rgba(220, 20, 60, 0.22);
--hero-glow-2: rgba(220, 20, 60, 0.1);
}
[data-theme="dark"] {
--bg: #080808;
--bg-alt: #0f0f0f;
--bg-card: rgba(255, 255, 255, 0.04);
--bg-card-hover: rgba(255, 255, 255, 0.07);
--glass-border: rgba(255, 255, 255, 0.08);
--glass-border-hover: rgba(255, 255, 255, 0.22);
--accent: #dc143c;
--accent-light: #ff1744;
--accent-dark: #960f2c;
--accent-glow: rgba(220, 20, 60, 0.28);
--accent-glow-sm: rgba(220, 20, 60, 0.1);
--text: #ffffff;
--text-2: #c8c8c8;
--text-muted: #707070;
--nav-bg: rgba(8, 8, 8, 0.88);
--nav-border: rgba(255, 255, 255, 0.07);
--stats-bg: rgba(255, 255, 255, 0.03);
--stats-border: rgba(255, 255, 255, 0.08);
--divider: rgba(255, 255, 255, 0.07);
--shadow-deep: rgba(0, 0, 0, 0.7);
--inset-shine: rgba(255, 255, 255, 0.03);
--hero-glow-1: rgba(220, 20, 60, 0.1);
--hero-glow-2: rgba(220, 20, 60, 0.04);
}
[data-theme="light"] {
--bg: #f5f4f6;
--bg-alt: #eeecef;
--bg-card: rgba(255, 255, 255, 0.72);
--bg-card-hover: rgba(255, 255, 255, 0.95);
--glass-border: rgba(0, 0, 0, 0.08);
--glass-border-hover: rgba(192, 18, 48, 0.35);
--accent: #c0122e;
--accent-light: #e0153a;
--accent-dark: #8b0020;
--accent-glow: rgba(192, 18, 48, 0.22);
--accent-glow-sm: rgba(192, 18, 48, 0.1);
--text: #0d0a0e;
--text-2: #2e2830;
--text-muted: #6a6068;
--nav-bg: rgba(245, 244, 246, 0.88);
--nav-border: rgba(0, 0, 0, 0.08);
--stats-bg: rgba(192, 18, 48, 0.06);
--stats-border: rgba(192, 18, 48, 0.16);
--divider: rgba(0, 0, 0, 0.07);
--shadow-deep: rgba(0, 0, 0, 0.1);
--inset-shine: rgba(255, 255, 255, 0.8);
--hero-glow-1: rgba(192, 18, 48, 0.12);
--hero-glow-2: rgba(192, 18, 48, 0.06);
}

92
css/utility.css Normal file
View File

@@ -0,0 +1,92 @@
/*
* Utility Styles - Back to top, scroll progress, focus states, etc.
*/
/* Back to top button */
.back-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 44px;
height: 44px;
min-width: 44px;
min-height: 44px;
background: var(--accent);
border: none;
border-radius: 10px;
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transform: translateY(12px);
transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
pointer-events: none;
box-shadow: 0 4px 20px var(--accent-glow);
z-index: 900;
}
.back-to-top.visible {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}
.back-to-top:hover {
background: var(--accent-light);
transform: translateY(-3px);
box-shadow: 0 8px 28px var(--accent-glow);
}
.back-to-top:focus-visible {
outline: 2px solid var(--accent-light);
outline-offset: 3px;
}
/* Scroll progress bar */
.scroll-progress {
position: fixed;
top: 0;
left: 0;
height: 3px;
width: 0%;
background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
z-index: 1100;
box-shadow: 0 0 10px var(--accent-glow);
transition: width 0.08s linear;
pointer-events: none;
}
/* Touch targets */
.theme-toggle,
.hamburger {
min-width: 44px;
min-height: 44px;
width: 44px;
height: 44px;
}
.theme-toggle {
border-radius: 10px;
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
.stat {
animation: none;
opacity: 1;
}
.back-to-top {
transition: opacity 0.01ms;
}
}