/* 
  Jajanta UI - Matching KitaLab's Dark Theme 
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Colors based on Kitalab dark theme */
    --bg-color: #0d0f12; /* Very dark background */
    --text-main: #ffffff;
    --text-muted: #8b949e;
    
    --badge-bg: rgba(37, 99, 235, 0.15); /* Dark blue/purple tint */
    --badge-text: #60a5fa; /* Light blue */
    
    --btn-gradient: linear-gradient(to right, #ec4899, #8b5cf6); /* Pink to Purple */
    
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation (Optional/Hidden in screenshot but keeping it minimal) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-main);
}

.logo span {
    font-weight: 400;
    color: var(--text-muted);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--text-main);
}

/* Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--badge-bg);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--badge-text);
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 90%;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--btn-gradient);
    color: #ffffff;
    border: none;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-text {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-text:hover {
    color: var(--text-main);
}

/* Hero Visual (Right Side) */
.hero-visual {
    padding: 2rem;
}

.hero-visual h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1rem;
}

.balance {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.info-row {
    margin-bottom: 0.5rem;
}

.info-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.info-value {
    color: var(--text-muted);
    font-size: 1rem;
}

.status {
    font-size: 1rem;
    color: #a3e635; /* Lime green like the screenshot */
    margin-top: 1rem;
}

/* Features Section (Continuing the dark theme) */
.features {
    padding: 6rem 0;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4rem;
}

footer a {
    color: var(--text-main);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}
