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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f0efeb;
    color: #2d2d2d;
    line-height: 1.6;
    overflow-y: scroll;
}

/* AUTH SCREEN STYLES */
#auth-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f0efeb 0%, #e8e6e1 100%);
}

.auth-container {
    background: #fafaf8;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 440px;
}

.auth-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.auth-subtitle {
    color: #6b6b6b;
    margin-bottom: 32px;
    font-size: 15px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-input {
    padding: 14px 16px;
    border: 1.5px solid #e8e6e1;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
    background: white;
}

.auth-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.auth-button {
    padding: 14px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.auth-button:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.auth-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.auth-toggle {
    text-align: center;
    margin-top: 24px;
    color: #6b6b6b;
    font-size: 14px;
}

.auth-toggle button {
    background: none;
    border: none;
    color: #6366f1;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.auth-toggle button:hover {
    text-decoration: underline;
}

.auth-forgot {
    text-align: center;
    margin-top: 16px;
}

.auth-forgot button {
    background: none;
    border: none;
    color: #6b6b6b;
    font-size: 13px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.auth-forgot button:hover {
    color: #6366f1;
    text-decoration: underline;
}

.auth-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.auth-message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.auth-message.success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* APP SCREEN STYLES */
#app-screen {
    display: none;
}

.container {
    min-height: 100vh;
    padding: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Header with logout */
.app-header {
    position: fixed;
    top: 0;
    right: 0;
    padding: 16px 24px;
    z-index: 100;
}

.logout-btn {
    padding: 8px 16px;
    background: white;
    border: 1.5px solid #e8e6e1;
    border-radius: 8px;
    color: #2d2d2d;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.logout-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.calendar-card {
    background: #fafaf8;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.month-title {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #2d2d2d;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-group {
    display: flex;
    gap: 2px;
}

.nav-btn {
    padding: 10px 16px;
    border: 1.5px solid #e8e6e1;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #2d2d2d;
    transition: all 0.2s;
}

.nav-btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    background: #f9fafb;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e8e6e1;
    border-radius: 14px;
    overflow: hidden;
}

.day-header {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b6b6b;
    padding: 12px 0;
}

.day-cell {
    background: #fafaf8;
    padding: 10px;
    min-height: 88px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.day-cell:hover {
    background: #f5f4f0;
}

.day-cell.other-month {
    opacity: 0.3;
    pointer-events: none;
}

.day-cell.today {
    background: #eef2ff;
}

.day-number {
    font-size: 14px;
    font-weight: 500;
    color: #4a4840;
    margin-bottom: 4px;
}

/* Seed icon - completed but not analyzed */
.seed-icon {
    position: absolute;
    bottom: 6px;
    right: 6px;
    font-size: 12px;
}

/* Flower icon - analyzed */
/* Flowers with stems touch base: 🌷🌹🌺🌻 */
/* Flowers without stems centered: 🌸🌼 */
.flower-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
    line-height: 1;
}

.flower-icon.has-stem {
    bottom: 0;
}

.flower-icon.no-stem {
    bottom: 50%;
    transform: translate(-50%, 50%);
}

/* Day popup for flower cells */
.day-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 100;
    min-width: 120px;
}

.day-popup .popup-option {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
}

.day-popup .popup-option:hover {
    background: #f5f5f5;
}

.day-popup .popup-option.insight {
    color: #6366f1;
    border-top: 1px solid #f0f0f0;
}

/* Sidebar */
.insights-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 320px;
    height: 100vh;
    background: #fafaf8;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.insights-sidebar.collapsed {
    transform: translateX(320px);
}

.sidebar-toggle {
    position: fixed;
    right: 320px;
    top: 50%;
    transform: translateY(-50%);
    background: #fafaf8;
    border: 1px solid #e8e6e1;
    border-right: none;
    border-radius: 10px 0 0 10px;
    padding: 14px 8px;
    cursor: pointer;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.06);
    z-index: 1001;
    transition: right 0.3s ease;
    color: #8a8780;
    font-size: 12px;
}

.sidebar-toggle.collapsed {
    right: 0;
}

.sidebar-toggle:hover {
    background: #f0eeea;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid #e8e6e1;
}

.sidebar-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: #1a1a2e;
}

.insights-sidebar.collapsed .sidebar-title {
    display: none;
}

.insights-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.insight-item {
    padding: 12px;
    background: white;
    border: 1.5px solid #e8e6e1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 8px;
}

.insight-item:hover {
    border-color: #6366f1;
    transform: translateY(-1px);
}

.insight-date-range {
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.insight-preview {
    font-size: 12px;
    color: #6b6b6b;
}

/* Generate Insights Button with dots and color states */
.generate-btn {
    width: 100%;
    padding: 14px 14px 10px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Warm color states 0-7 */
.generate-btn.state-0 { background: #d1d5db; color: #4b5563; }
.generate-btn.state-1 { background: #fef3c7; color: #92400e; }
.generate-btn.state-2 { background: #fde68a; color: #92400e; }
.generate-btn.state-3 { background: #fcd34d; color: #78350f; }
.generate-btn.state-4 { background: #fb923c; color: #7c2d12; }
.generate-btn.state-5 { background: #f87171; color: #7f1d1d; }
.generate-btn.state-6 { background: #fb7185; color: #881337; }
.generate-btn.state-7 { background: #e11d48; color: white; }

.generate-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.generate-btn:disabled {
    cursor: not-allowed;
}

/* Dots inside button */
.insights-dots {
    display: flex;
    gap: 5px;
}

.insight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.insight-dot.filled {
    background: rgba(0, 0, 0, 0.4);
}

/* White dots for state-7 */
.state-7 .insight-dot {
    background: rgba(255, 255, 255, 0.4);
}

.state-7 .insight-dot.filled {
    background: white;
}

.export-pdf-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: #6366f1;
    border: 1.5px solid #6366f1;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    margin: 16px;
    width: calc(100% - 32px);
}

.export-pdf-btn:hover {
    background: #eef2ff;
}

/* Journal Writing Overlay */
.journal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    overflow-y: auto;
}

.journal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: 100vh;
}

.journal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: 1.5px solid #e8e6e1;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #2d2d2d;
    transition: all 0.2s;
    z-index: 1001;
}

.journal-close:hover {
    border-color: #6366f1;
    color: #6366f1;
}

.question-banner {
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.question-banner.past {
    background: #fdf2f2;
    border-left: 4px solid #7c2d2d;
}

.question-banner.present {
    background: #eef4fd;
    border-left: 4px solid #1e3a5f;
}

.question-banner.future {
    background: #eef8f2;
    border-left: 4px solid #1a4731;
}

.question-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.question-banner.past .question-category {
    background: #7c2d2d;
    color: white;
}

.question-banner.present .question-category {
    background: #1e3a5f;
    color: white;
}

.question-banner.future .question-category {
    background: #1a4731;
    color: white;
}

.question-text {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: #2d2d2d;
    line-height: 1.4;
}

.writing-area {
    margin-bottom: 32px;
}

.writing-label {
    font-size: 14px;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 12px;
    display: block;
}

.journal-textarea {
    width: 100%;
    min-height: 300px;
    padding: 20px;
    border: none;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #2d2d2d;
    resize: vertical;
}

.journal-textarea:focus {
    outline: none;
}

.hint-section {
    margin-bottom: 32px;
}

.hint-toggle {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 15px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin: -8px;
}

.hint-toggle:hover {
    text-decoration: underline;
}

.hint-content {
    display: none;
    margin-top: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.8;
    white-space: pre-line;
}

.hint-content.visible {
    display: block;
}

.freeform-section {
    margin-bottom: 32px;
}

.freeform-toggle {
    background: none;
    border: none;
    color: #6366f1;
    font-size: 17px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    margin: -8px;
}

.freeform-toggle:hover {
    text-decoration: underline;
}

.freeform-content {
    display: none;
    margin-top: 12px;
}

.freeform-content.visible {
    display: block;
}

.freeform-textarea {
    width: 100%;
    min-height: 200px;
    padding: 16px;
    border: 1.5px solid #e8e6e1;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2d2d2d;
    resize: vertical;
    background: white;
}

.freeform-textarea:focus {
    outline: none;
    border-color: #6366f1;
}

.journal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1.5px solid #e8e6e1;
}

.word-count {
    font-size: 14px;
    color: #6b6b6b;
}

.word-count.invalid {
    color: #dc2626;
    font-weight: 600;
}

.auto-saved {
    font-size: 13px;
    color: #10b981;
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.visible {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1.5px solid #e8e6e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

.modal-title {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    color: #2d2d2d;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b6b6b;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #2d2d2d;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: #e8e6e1;
    border: 1px solid #e8e6e1;
    border-radius: 12px;
    overflow: hidden;
}

.insight-card {
    background: white;
    padding: 20px;
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.insight-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.insight-icon.blue { background: #dbeafe; }
.insight-icon.rose { background: #ffe4e6; }
.insight-icon.green { background: #d1fae5; }
.insight-icon.amber { background: #fef3c7; }

.insight-title-group h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 2px;
}

.insight-subtitle {
    font-size: 12px;
    color: #6b6b6b;
}

.insight-text {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    white-space: pre-wrap;
}

/* Analysis Card Styles */
.analysis-card {
    background: white;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.analysis-card::before {
    content: '';
    display: block;
    width: 32px;
    height: 3px;
    border-radius: 3px;
}

.card-evidence::before { background: #3b82f6; }
.card-blindspot::before { background: #f43f5e; }
.card-growth::before { background: #10b981; }
.card-thematic::before { background: #f59e0b; }

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.card-evidence .card-icon { background: #dbeafe; }
.card-blindspot .card-icon { background: #ffe4e6; }
.card-growth .card-icon { background: #d1fae5; }
.card-thematic .card-icon { background: #fef3c7; }

.card-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.card-subtitle {
    font-size: 12px;
    color: #9a978f;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-chapter {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chapter-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6b6860;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chapter-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e6e1;
}

.card-evidence .chapter-heading { color: #2563eb; }
.card-blindspot .chapter-heading { color: #e11d48; }
.card-growth .chapter-heading { color: #059669; }
.card-thematic .chapter-heading { color: #d97706; }

.chapter-text {
    font-size: 14px;
    line-height: 1.75;
    color: #4a4840;
}

.chapter-callout {
    font-size: 13.5px;
    line-height: 1.65;
    color: #3a3830;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 2px;
}

.card-evidence .chapter-callout { background: #eff6ff; }
.card-blindspot .chapter-callout { background: #fff1f2; }
.card-growth .chapter-callout { background: #ecfdf5; }
.card-thematic .chapter-callout { background: #fffbeb; }

/* Export Popup */
.export-popup-content {
    max-width: 440px;
    text-align: center;
}

.export-popup-inner {
    padding: 32px;
}

.export-popup-inner h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: #2d2d2d;
}

.export-popup-inner p {
    color: #6b6b6b;
    font-size: 14px;
    margin-bottom: 20px;
}

.prompt-copy-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
}

.prompt-text {
    flex: 1;
    font-family: monospace;
    font-size: 14px;
    color: #2d2d2d;
    text-align: left;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.copy-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.download-pdf-btn {
    width: 100%;
    padding: 14px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.download-pdf-btn:hover:not(:disabled) {
    background: #4f46e5;
}

.download-pdf-btn:disabled {
    background: #a5a6f6;
    cursor: not-allowed;
}

.delete-insight-btn {
    margin-top: 24px;
    padding: 10px 16px;
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.delete-insight-btn:hover {
    background: #fcc;
}

/* Selection Modal */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.selection-item {
    padding: 14px 16px;
    border: 2px solid #e8e6e1;
    border-radius: 10px;
    transition: all 0.2s;
    background: white;
}

.selection-item.selected {
    border-color: #6366f1;
    background: #f5f5ff;
}

.selection-category {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.selection-date {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 4px;
}

.selection-question {
    font-size: 13px;
    color: #6b6b6b;
}

.selection-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1.5px solid #e8e6e1;
}

.selection-count {
    font-size: 14px;
    color: #6b6b6b;
}

.confirm-selection-btn {
    padding: 12px 24px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.confirm-selection-btn:hover {
    background: #4f46e5;
}

.confirm-selection-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading spinner */
.spinner {
    border: 3px solid #f3f4f6;
    border-top: 3px solid #6366f1;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .insights-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .calendar-grid {
        gap: 8px;
    }

    .day-cell {
        min-height: 70px;
    }
}

/* Onboarding Modal */
.onboarding-content {
    max-width: 500px;
    text-align: center;
    position: relative;
}

.onboarding-slide {
    padding: 48px 40px;
}

.onboarding-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.onboarding-title {
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    color: #2d2d2d;
    margin-bottom: 16px;
}

.onboarding-text {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.onboarding-steps {
    text-align: left;
    margin-bottom: 32px;
}

.onboarding-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e8e6e1;
}

.onboarding-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #6366f1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    color: #2d2d2d;
}

.onboarding-btn {
    width: 100%;
    padding: 16px;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.onboarding-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}
