@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;700;900&family=JetBrains+Mono:wght@500&display=swap');

:root {
    --bg: #ffffff;
    --text: #1f2937;
    --accent: #9ca3af;
    --highlight: #10b981;
    --border: #f3f4f6;
}

body, html {
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

#canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

nav {
    padding: 25px 6%;
    display: flex; justify-content: space-between; align-items: center;
    position: relative; z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

.logo {
    font-weight: 900; font-size: 1.5rem;
    letter-spacing: -1.5px; text-transform: uppercase;
}
.logo span { color: var(--accent); font-weight: 300; }

.nav-cta {
    text-decoration: none; color: white;
    font-size: 0.75rem; font-weight: 700;
    padding: 10px 24px; background: var(--text);
    border-radius: 4px;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.nav-cta:hover { background: var(--highlight); transform: translateY(-1px); }

.hero {
    padding: 60px 6% 70px 6%;
    position: relative; z-index: 1;
    max-width: 800px;
}

.standard-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    border-left: 2px solid var(--highlight);
    padding: 2px 12px;
    margin-bottom: 20px; display: inline-block;
}

h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900; line-height: 0.9;
    margin: 0; letter-spacing: -4px;
}

.hero-p {
    margin-top: 30px; font-size: 1.2rem;
    color: #6b7280; max-width: 480px;
    line-height: 1.5; font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px; background: var(--border);
    position: relative; z-index: 1;
    border-top: 1px solid var(--border);
}

.card {
    background: white;
    border-radius: 0;
    padding: 45px 40px;
    transition: 0.3s ease;
}
.card:hover { background: #fafafa; }

.card-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem; color: var(--accent);
    margin-bottom: 15px; display: block;
}

h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; color: var(--text); }
p { color: #6b7280; font-size: 0.95rem; line-height: 1.6; margin: 0; }

footer {
    padding: 20px 6%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem; color: #9ca3af;
    position: relative; z-index: 1;
    background: white;
    border-top: 1px solid var(--border);
}

footer div { margin-bottom: 6px; }
