/* ========== FOUNDER DIARY — APR 6, 2026 ========== */

.slide {
    min-height: 100vh;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    scroll-snap-align: start;
}

/* Title Slide */
.slide-title {
    background: var(--text-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.slide-title::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(97, 243, 147, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(97, 243, 147, 0.05) 0%, transparent 50%);
    animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translate(0, 0) rotate(0deg); }
    to { transform: translate(30px, -20px) rotate(3deg); }
}

.slide-title h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.slide-title .date-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.slide-title .location {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-top: 16px;
}

/* Section Headers */
.section-header {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a2744 100%);
    color: white;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header .section-emoji {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.section-header .section-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Slides */
h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Achievement Cards */
.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.achievement-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.achievement-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.achievement-card .emoji {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.achievement-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 20px;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--border));
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item .time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 4px 0;
    color: var(--text-primary);
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.stat .number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    font-weight: 600;
}

/* Insight Card */
.insight-card {
    background: linear-gradient(135deg, #0a1628 0%, #132040 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 24px;
    color: white;
}

.insight-card h3 {
    color: var(--accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.insight-card .quote {
    font-size: 1.3rem;
    font-style: italic;
    opacity: 0.85;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: 20px 0;
}

/* Status Pills */
.status-pill {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-shipped { background: #E8FFF0; color: #059669; }
.status-fixed { background: #EFF6FF; color: #2563EB; }
.status-merged { background: #F5F3FF; color: #7C3AED; }
.status-created { background: #FFF7ED; color: #EA580C; }

/* Closing slide */
.slide-closing {
    background: var(--text-primary);
    color: white;
    text-align: center;
}

.slide-closing .tomorrow-items {
    text-align: left;
    max-width: 500px;
    margin: 32px auto 0;
}

.slide-closing .tomorrow-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 1rem;
    opacity: 0.8;
}

.slide-closing .tomorrow-item .time-tag {
    background: rgba(97, 243, 147, 0.15);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 768px) {
    .slide { padding: 40px 24px; }
    .slide-title h1 { font-size: 2rem; }
    .achievement-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; }
    h2 { font-size: 1.4rem; }
}
