Spaces:
Running
Running
File size: 1,845 Bytes
481b91e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
:root {
--bg: #05070f;
--bg-alt: #0d111c;
--card: #11182a;
--accent: #6ee7b7;
--accent-strong: #34d399;
--text: #f8fafc;
--muted: #9ca3af;
--border: rgba(255, 255, 255, 0.08);
--transition: 200ms ease;
font-size: 16px;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
background: linear-gradient(120deg, #030712, #111827);
color: var(--text);
line-height: 1.6;
}
img,
svg {
max-width: 100%;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
.container {
width: min(1200px, 90vw);
margin: 0 auto;
}
.section {
padding: 4.5rem 0;
}
.section-header {
margin-bottom: 2.5rem;
}
.section-header p {
max-width: 560px;
}
.eyebrow {
font-size: 0.85rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.5rem;
}
h1, h2, h3, h4 {
margin: 0 0 0.75rem;
line-height: 1.2;
}
p {
margin: 0 0 1rem;
color: var(--muted);
}
.site-header {
position: sticky;
top: 0;
z-index: 10;
background: rgba(5, 7, 15, 0.9);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border);
}
.header-grid {
display: grid;
grid-template-columns: auto 1fr auto;
align-items: center;
gap: 1rem;
padding: 1rem 0;
}
.logo a {
font-weight: 700;
font-size: 1.1rem;
display: inline-flex;
align-items: center;
gap: 0.4rem;
}
.logo-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--accent);
display: inline-block;
}
.primary-nav {
justify-self: center;
}
.primary-nav ul {
display: flex;
gap: 1.5rem;
}
.primary-nav a {
font-weight: 500;
color: var(--muted);
transition: color var(--transition);
}
.primary-nav a |