:root {
    --bg: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --accent: #4f46e5; /* Indigo */
    --card-bg: #ffffff;
    --border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blob-c {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    filter: blur(80px);
}
.shape-blob {
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 50%;
    top: -100px; left: -100px;
}
.one { background: rgba(147, 51, 234, 0.15); bottom: -100px; right: -100px; top: auto; left: auto; }
.two { background: rgba(59, 130, 246, 0.15); top: 40%; left: 30%; width: 300px; height: 300px; }

body {
    background-color: #f8fafc; /* Base color */
    background-image: 
        radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.15) 0px, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(147, 51, 234, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(79, 70, 229, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(147, 51, 234, 0.15) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Subtle background decoration */
.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(79, 70, 229, 0.05) 0%, transparent 40%);
    z-index: -1;
}

.main-container {
    width: 100%;
    max-width: 1000px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 100px;
    border: 1px solid #d1fae5;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--accent);
    opacity: 0;
    transition: 0.3s;
}

.card:hover .arrow { opacity: 1; transform: translateX(5px); }

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 80px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 640px) {
    .links-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}
