/* Ikigai discovery journey */
.ik-page main {
    max-width: 820px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.ik-hero {
    background: linear-gradient(135deg, #c45c26 0%, #2c3e50 55%, #98a869 100%);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ik-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
}

.ik-hero p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.65;
    font-size: 1rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.ik-steps {
    display: flex;
    justify-content: flex-start;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.ik-step-dot {
    flex: 0 0 auto;
    min-width: 64px;
    text-align: center;
    font-size: 0.68rem;
    color: #888;
}

.ik-step-dot span {
    display: block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #555;
    margin: 0 auto 0.3rem;
    font-weight: 600;
    font-size: 0.75rem;
}

.ik-step-dot.active span {
    background: #c45c26;
    color: white;
}

.ik-step-dot.done span {
    background: #2c3e50;
    color: white;
}

.ik-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.ik-card h2 {
    margin: 0 0 0.5rem;
    color: #2c3e50;
    font-size: 1.3rem;
}

.ik-desc {
    color: #555;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.ik-progress {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ik-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c45c26, #98a869);
    transition: width 0.25s ease;
}

.ik-prompt {
    margin-bottom: 1.25rem;
}

.ik-prompt label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.ik-prompt textarea,
.ik-prompt input[type="text"] {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.5;
    box-sizing: border-box;
}

.ik-prompt textarea {
    min-height: 4.5rem;
    resize: vertical;
}

.ik-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.ik-hidden {
    display: none !important;
}

.ik-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .ik-lists-grid {
        grid-template-columns: 1fr;
    }
}

.ik-list-panel {
    border: 1px solid #e6e4de;
    border-radius: 10px;
    padding: 1rem;
    background: #faf9f6;
}

.ik-list-panel h3 {
    margin: 0 0 0.15rem;
    font-size: 1rem;
    color: #c45c26;
}

.ik-list-panel .ik-list-sub {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.ik-list-count {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.ik-list-add {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ik-list-add input {
    flex: 1;
    padding: 0.5rem 0.65rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.ik-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 220px;
    overflow-y: auto;
}

.ik-list-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    line-height: 1.4;
}

.ik-list-items li button {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
}

.ik-summary-block {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.ik-summary-block:last-child {
    border-bottom: none;
}

.ik-summary-block h3 {
    margin: 0 0 0.5rem;
    color: #c45c26;
    font-size: 1.05rem;
}

.ik-summary-block p,
.ik-summary-block ul {
    margin: 0;
    color: #444;
    line-height: 1.6;
    font-size: 0.95rem;
}

.ik-summary-block ul {
    padding-left: 1.2rem;
}

.ik-intersection {
    background: linear-gradient(135deg, #fff8f3 0%, #f0f4ec 100%);
    border: 1px solid #e6e4de;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.ik-intersection h3 {
    margin: 0 0 0.5rem;
    color: #2c3e50;
}

.ik-diagram-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #f8f6f0;
    border-radius: 8px;
}

.ik-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media print {
    .main-header,
    .ik-steps,
    .ik-progress,
    .ik-nav,
    .ik-actions-row,
    .ik-list-add,
    #concierge-fab {
        display: none !important;
    }

    .ik-card {
        box-shadow: none;
        padding: 0;
    }

    .ik-hidden {
        display: none !important;
    }

    #ik-panel-summary {
        display: block !important;
    }
}
