:root {
    --bg: #0A0A0C;
    --surface: #1A1A1F;
    --text: #ffffff;
    --muted: #8b8b9e;
    --accent: #00f3ff;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans', 'Noto Sans Georgian', sans-serif;
}

body {
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    padding: 48px 24px 64px;
}

.top {
    max-width: 960px;
    margin: 0 auto 40px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(0, 243, 255, 0.35);
    margin-bottom: 12px;
}

.tagline {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    display: block;
    padding: 28px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: rgba(0, 243, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 243, 255, 0.08);
}

.card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.card p {
    color: var(--muted);
    line-height: 1.5;
    font-size: 15px;
}
