:root {
    --bg-dark: #0a0c10;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent: #7c4dff;
    --accent-light: #b388ff;
    --text-main: #e0e0e0;
    --text-dim: #9e9e9e;
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

/* Background Blobs */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: move 20s infinite alternate;
}

.blob-1 { width: 500px; height: 500px; background: #3f51b5; top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #673ab7; bottom: -50px; left: -100px; animation-delay: -5s; }
.blob-3 { width: 300px; height: 300px; background: #00bcd4; top: 40%; left: 30%; animation-delay: -10s; }

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

/* Nav */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 12, 16, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--accent-light);
    font-size: 0.9rem;
    padding-left: 5px;
}

.status-badge {
    background: rgba(124, 77, 255, 0.1);
    border: 1px solid var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(179, 136, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(179, 136, 255, 0); }
    100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(179, 136, 255, 0); }
}

/* Container */
.container {
    padding: 4rem 5% 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    margin-bottom: 4rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #fff 0%, #aab 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.italic-text {
    font-style: italic;
    opacity: 0.8;
}

/* Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.full-width {
    grid-column: 1 / -1;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Task List */
.task-list {
    list-style: none;
}

.task-item {
    margin-bottom: 1.2rem;
}

.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.container-checkbox:hover input ~ .checkmark {
    background-color: rgba(255,255,255,0.2);
}

.container-checkbox input:checked ~ .checkmark {
    background-color: var(--accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.container-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.card-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.tip {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Principles */
.principles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle .label {
    display: inline-block;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

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

/* Timeline */
.timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.timeline-item {
    flex: 1;
    position: relative;
    padding-top: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--glass-border);
}

.timeline-item.active::before {
    background: var(--accent-light);
}

.timeline-item.active .year {
    color: var(--accent-light);
}

.year {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit';
}

.event {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Chat Mirror */
.chat-mirror {
    margin-top: 4rem;
}

.chat-bubble {
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 80%;
}

.bot-bubble {
    background: rgba(124, 77, 255, 0.1);
    color: #fff;
    border-left: 4px solid var(--accent);
    font-style: italic;
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
}
